About 56,400 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. What is the proper way to exit a command line program?

    2 Take a look at Job Control on UNIX systems If you don't have control of your shell, simply hitting ctrl + C should stop the process. If that doesn't work, you can try ctrl + Z and using the jobs …

  3. 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] = …

  4. How to find out what group a given user has? - Stack Overflow

    Dec 8, 2008 · In Unix/Linux, how do you find out what group a given user is in via command line?

  5. How can I convert a Unix timestamp to DateTime and vice versa?

    Oct 30, 2008 · A Unix tick is 1 second (if I remember well), and a .NET tick is 100 nanoseconds. If you've been encountering problems with nanoseconds, you might want to try using AddTick …

  6. 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 …

  7. unix - mkdir's "-p" option - Stack Overflow

    I'm confused about what the -p option does in Unix. I used it for a lab assignment while creating a subdirectory and then another subdirectory within that one. It looked like this: mkdir -p …

  8. How to convert DOS/Windows newline (CRLF) to Unix newline (LF)

    Apr 10, 2010 · How can I programmatically (not using vi) convert DOS/Windows newlines to Unix newlines? The dos2unix and unix2dos commands are not available on certain systems. How …

  9. Display curl output in readable JSON format in Unix shell script

    May 10, 2017 · Display curl output in readable JSON format in Unix shell script Asked 10 years, 11 months ago Modified 3 months ago Viewed 466k times

  10. unix - Why should text files end with a newline? - Stack Overflow

    Apr 8, 2009 · I assume everyone here is familiar with the adage that all text files should end with a newline. I've known of this "rule" for years but I've always wondered — why?