About 56,200 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. 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 …

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

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

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

  7. Unix: How to delete files listed in a file - Stack Overflow

    Feb 28, 2011 · Unix: How to delete files listed in a file Asked 14 years, 8 months ago Modified 1 year, 3 months ago Viewed 194k times

  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. Unix - copy contents of one directory to another [closed]

    Apr 21, 2015 · Unix - copy contents of one directory to another [closed] Asked 13 years ago Modified 10 years, 6 months ago Viewed 270k times

  10. bash - What does " 2>&1 " mean? - Stack Overflow

    To combine stderr and stdout into the stdout stream, we append this to a command: 2>&1 For example, the following command shows the first few errors from compiling main.cpp: g++ …