About 57,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 does the line "#!/bin/sh" mean in a UNIX shell script?

    Sep 10, 2011 · 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 …

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

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

  6. In Unix, how do you remove everything in the current directory …

    May 4, 2009 · First, if you look at the rm command man page (man rm under most Unix) you notice that –r means "remove the contents of directories recursively". So, doing rm -r . alone …

  7. UNIX® Certification Program | www.opengroup.org

    UNIX certification is a trusted and open system industry standard, ensuring that products conform to the most exacting criteria for portability, compatibility, and global interoperability.

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

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

  10. 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), …