About 52,500 results
Open links in new tab
  1. linux - Explaining the 'find -mtime' command - Stack Overflow

    Aug 27, 2014 · The POSIX specification for find says: -mtime n The primary shall evaluate as true if the file modification time subtracted from the initialization time, divided by 86400 (with any …

  2. What are the special dollar sign shell variables? - Stack Overflow

    Sep 14, 2012 · In Bash, there appear to be several variables which hold special, consistently-meaning values. For instance, ./myprogram &; echo $! will return the PID of the process …

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

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

    It depends on the Test Construct around the operator. Your options are double parentheses, double brackets, single brackets, or test. If you use ((…)), you are testing arithmetic equality …

  6. How do I execute a bash script in Terminal? - Stack Overflow

    Mar 9, 2018 · A: To "execute this script" from the terminal on a Unix/Linux type system, you have to do three things: 1. Tell the system the location of the script. (pick one) # type the name of …

  7. www.opengroup.org

    About Us The Open Group is a global consortium that enables the achievement of business objectives through technology standards and open source initiatives by fostering a culture of …

  8. unix - Why is 1/1/1970 the "epoch time"? - Stack Overflow

    Jun 23, 2011 · The definition of unix time and the epoch date went through a couple of changes before stabilizing on what it is now. But it does not say why exactly 1/1/1970 was chosen in the …

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

    Jul 3, 2013 · a way to avoid the "grep -v grep" is to use "grep <process nam [e]>" so it interpolates the string and the process nam [e] isn't found when the first grep executes, if that makes sense.

  10. unix - Diff files present in two different directories - Stack Overflow

    Nov 9, 2012 · I have two directories with the same list of files. I need to compare all the files present in both the directories using the diff command. Is there a simple command line option …