About 48,100 results
Open links in new tab
  1. The UNIX® Standard | www.opengroup.org

    May 22, 2025 · 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 …

  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. bash - Shell equality operators (=, ==, -eq) - Stack Overflow

    unix bash shell script equal comparison operator is not comparing. 1. Equal and not equal operators not ...

  4. unix - How to check permissions of a specific directory ... - Stack ...

    In GNU/Linux, try to use ls, namei, getfacl, stat.. For Dir [flying@lempstacker ~]$ ls -ldh /tmp drwxrwxrwt. 23 root root 4.0K Nov 8 15:41 /tmp [flying@lempstacker ~]$ namei -l /tmp f: /tmp …

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

    Jul 3, 2013 · Solution (Exact Process Name Match) pgrep -x <process_name> | xargs kill -9 (incidentally, for this specific use case, might as well do pkill -9 -x <process_name>, but the …

  6. unix - History of users modifying a file in Linux - Stack Overflow

    Sep 2, 2015 · I am wondering if its possible to list who all modified the file with course of time. I am aware that stat or ls -lrt will give the last user who modified the file. But I want to find out if it is

  7. unix - What is the meaning of "POSIX"? - Stack Overflow

    Nov 23, 2009 · POSIX is similar to the UNIX standard, and it is intended to ensure that software written for one POSIX-compliant operating system can run on other POSIX-compliant …

  8. Are there any standard exit status codes in Linux?

    Jul 9, 2009 · Standard Unix exit codes are defined by sysexits.h, as David mentioned. The same exit codes are used by portable libraries such as Poco - here is a list of them: Class …

  9. unix - how to find host name from IP with out login to the host

    Oct 20, 2014 · It depends on the context. I think you're referring to the operating system's hostname (returned by hostname when you're logged in).

  10. How to check if $? is not equal to zero in unix shell scripting?

    I have a script which uses test command to check if $? (return code of last executed command) is not equal to zero.