PDA

View Full Version : [ubuntu] List of Terminal commands



Danpeters
September 9th, 2012, 01:10 PM
I want to have the list of all terminal commands and what they do.

raja.genupula
September 9th, 2012, 01:12 PM
https://help.ubuntu.com/community/CommandLineResources

Danihan
September 9th, 2012, 01:16 PM
http://linuxpoison.blogspot.com/2008/10/useful-commands-in-ubuntu.html

Lars Noodén
September 9th, 2012, 04:31 PM
You can generate a list of what's on your machine:



for j in $(ls /usr/local/bin/ /usr/bin/ /bin/ /usr/local/sbin /usr/sbin /sbin | sort -u );do man $j | head -n 7 | grep ' - ';done 2>/dev/null | less

jerrrys
September 9th, 2012, 04:47 PM
Terminal commands (http://www.googlubuntu.com/results/?cx=006238239194895611142%3Au-ocqbntw_o&cof=FORID%3A9&ie=UTF-8&q=terminal+commands&as_qdr=all&sa=Google+Search&lang=en&siteurl=http%3A%2F%2Fwww.googlubuntu.com%2F)

oldos2er
September 9th, 2012, 05:16 PM
I want to have the list of all terminal commands and what they do.

Hit the Tab key twice. Most commands have a manual entry, so to get help with the 'ls' command, for example, you'd enter
man ls