Global web icon
opengroup.org
https://www.opengroup.org/membership/forums/platfo…
The UNIX® Standard | www.opengroup.org
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 includes a rich feature set, and its core volumes are simultaneously the IEEE Portable Operating System Interface (POSIX) standard and the ISO/IEC 9945 standard.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/7366775/what-d…
What does the line "#!/bin/sh" mean in a UNIX shell script?
When you try to execute a program in unix (one with the executable bit set), the operating system will look at the first few bytes of the file. These form the so-called "magic number", which can be used to decide the format of the program and how to execute it.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/83329/how-can-…
How can I extract a predetermined range of lines from a text file on Unix?
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. Does anyone know a Unix command (or series of commands) to extract all lines from a file between say line 16224 and 16482 and then redirect them into a new file?
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/15471264/how-t…
How to check if $? is not equal to zero in unix shell scripting?
How to check if $? is not equal to zero in unix shell scripting? Asked 12 years, 8 months ago Modified 3 years, 8 months ago Viewed 356k times
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/1780599/what-i…
unix - What is the meaning of "POSIX"? - Stack Overflow
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 defines a standard environment to operate in.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/1204669/how-ca…
How can I generate Unix timestamps? - Stack Overflow
Related question is "Datetime To Unix timestamp", but this question is more general. I need Unix timestamps to solve my last question. My interests are Python, Ruby and Haskell, but other approac...
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/2282506/how-ca…
How can I send an email through the UNIX mailx command?
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 sent. The user is then expected to type in his message, followed by an ‘control-D’ at the beginning of a line. In other words, mailx reads the content to send from standard input and can be redirected to like normal. E.g.: ls -l ...
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/350141/how-to-…
How to find out what group a given user has? - Stack Overflow
In Unix/Linux, how do you find out what group a given user is in via command line?
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/46130132/conve…
Converting unix time into date-time via excel - Stack Overflow
Explanation Unix system represent a point in time as a number. Specifically the number of seconds* since a zero-time called the Unix epoch which is 1/1/1970 00:00 UTC/GMT. This number of seconds is called "Unix timestamp" or "Unix time" or "POSIX time" or just "timestamp" and sometimes (confusingly) "Unix epoch".
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/338037/how-to-…
unix - How to check permissions of a specific directory ... - Stack ...
I know that using ls -l "directory/directory/filename" tells me the permissions of a file. How do I do the same on a directory? I could obviously use ls -l on the directory higher in the hierarchy...