unix bash scripting for beginners - Search
About 53,400 results
Open links in new tab
    Kizdar net | Kizdar net | Кыздар Нет
  1. 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...

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

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

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

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

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

  8. Difference between CR LF, LF and CR line break types

    Oct 12, 2009 · I'd like to know the difference (with examples if possible) between CR LF (Windows), LF (Unix) and CR (Macintosh) line break types.

  9. unix - How to kill a process running on particular port in Linux ...

    Jul 20, 2012 · To list any process listening to the port 8080: lsof -i:8080 To kill any process listening to the port 8080: kill $(lsof -t -i:8080) or more violently: kill -9 $(lsof -t -i:8080) (-9 …

  10. Difference between forward slash (/) and backslash (\) in file path

    Jul 18, 2016 · The Unix path separator could then be unambiguously used for file and directory names. This entry was removed in later versions, but a DOS call was documented to set the …