About 58,300 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 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

  4. unix - How to move a running process to background - Stack …

    I have a terminal connected to an external machine through ssh and have a process running in it. Is it possible move the execution to the background, so that I can close the ssh connection …

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

  6. unix - sed edit file in-place - Stack Overflow

    How do I edit a file in a single sed command? Currently, I have to manually stream the edited content into a new file and then rename the new file to the original file name. I tried sed -i, but my

  7. unix - Sort 'ls' output by name - Stack Overflow

    The beauty of Unix-like tools is you can combine them: ls -l | sort -k9,9 The output of ls -l will look like this -rw-rw-r-- 1 luckydonald luckydonald 532 Feb 21 2017 Makefile -rwxrwxrwx 1 …

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

    Adding n seconds to 1970-01-01 will give you a UTC date because n – the Unix timestamp – is the number of seconds that have elapsed since 00:00:00 Coordinated Universal Time (UTC), …

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

  10. 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, 11 months ago Modified 12 years, 11 months ago Viewed 66k times