About 57,600 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. 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...

  4. How can I split a large text file into smaller files with an equal ...

    I've got a large (by number of lines) plain text file that I'd like to split into smaller files, also by number of lines. So if my file has around 2M lines, I'd like to split it up into 10 files t...

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

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

  7. git - How to change line-ending settings - Stack Overflow

    Is there a file or menu that will let me change the settings on how to deal with line endings? I read there are 3 options: Checkout Windows-style, commit Unix-style Git will convert LF to CRLF …

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

    Jul 20, 2012 · Use the command sudo netstat -plten |grep java used grep java as tomcat uses java as their processes. It will show the list of processes with port number and process id tcp6 …

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

    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 to do it, or do I h...

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