About 55,900 results
Open links in new tab
  1. The UNIX® Standard | www.opengroup.org

    May 22, 2025 · Single UNIX Specification- “The Standard” The Single UNIX Specification is the standard in which the core interfaces of a UNIX OS are measured. The UNIX standard …

  2. git - How to change line-ending settings - Stack Overflow

    Is there a file or menu that will let me change the settings on how to deal with line endings? I read there are 3 options: Checkout Windows-style, commit Unix-style Git will convert LF to CRLF …

  3. Find all files containing a specific text (string) on Linux

    Jun 6, 2013 · How do I find all files containing a specific string of text within their file contents? The following doesn't work. It seems to display every single file in the system. find / -type f …

  4. How can I send an email through the UNIX mailx command?

    Feb 17, 2010 · From the man page: Sending mail To send a message to one or more people, mailx can be invoked with arguments which are the names of people to whom the mail will be …

  5. How can I convert bigint (UNIX timestamp) to datetime in SQL …

    8 This will do it: declare @UNIX_TIME int select @UNIX_TIME = 1111111111 -- Using dateadd to add seconds to 1970-01-01 select [Datetime from UNIX Time] = …

  6. How can I extract a predetermined range of lines from a text file …

    Sep 17, 2008 · I need to extract a certain section of this file (i.e. the data for a single database) and place it in a new file. I know both the start and end line numbers of the data that I want. …

  7. bash - How can I split a large text file into smaller files with an ...

    I've got a large (by number of lines) plain text file that I'd like to split into smaller files, also by number of lines. So if my file has around 2M lines, I'd like to split it up into 10 files t...

  8. unix - What is the meaning of "POSIX"? - Stack Overflow

    Nov 23, 2009 · Since every Unix does things a little differently -- Solaris, Mac OS X, IRIX, BSD, and Linux all have their quirks -- POSIX is especially useful to those in the industry as it …

  9. How do I find where Python is located on Unix? - Stack Overflow

    Nov 14, 2012 · How do I find where Python is located on Unix? Asked 14 years, 10 months ago Modified 12 years, 11 months ago Viewed 66k times

  10. How to convert Windows end of line in Unix end of line (CR/LF to LF)

    Convert line endings from CR/LF to a single LF: Edit the file with Vim, give the command :set ff=unix and save the file. Recode now should run without errors. Nice, but I've many files to …