About 56,500 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, 7 months ago Modified 3 years, 7 months ago Viewed 356k times

  4. 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...

  5. Newest 'unix' Questions - Stack Overflow

    Currently there is a unix-based system that exposes a file in what the team is saying would be {{parameters.secret-path}}/file. I am not sure how to read that in java given the enclosing of …

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

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

  7. unix - How to get PID of process by specifying process name and …

    Jul 3, 2013 · pgrep -x <process_name> | xargs kill -9 (incidentally, for this specific use case, might as well do pkill -9 -x <process_name>, but the question asked how to get the PID in general) …

  8. 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?

  9. Converting unix timestamp string to readable date - Stack Overflow

    1160 I have a string representing a unix timestamp (i.e. "1284101485") in Python, and I'd like to convert it to a readable date. When I use time.strftime, I get a TypeError:

  10. 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?