Difference between revisions of "Linux command line"
From CoinWiki
								
												
				 (→Manipulating Files)  | 
				 (→Common Commands)  | 
				||
| Line 16: | Line 16: | ||
* mkdir - Create directory  | * mkdir - Create directory  | ||
* cat - Display a file  | * cat - Display a file  | ||
| + | * is -a - show hidden files  | ||
| + | |||
| + | == Manipulating Processes ==  | ||
| + | * ps aux - To see what processes are running  | ||
| + | * tail - Show a file and the changes to it  | ||
| + | * fg - Bring a background process to the foreground  | ||
| + | * ctrl-c - Stop  | ||
=== Assistance Commands ===  | === Assistance Commands ===  | ||
Revision as of 23:26, 5 March 2018
The Linux command line takes user inputed commands from a keyboard and gives them to the computer to perform.
Common Commands
- pwd - Shows the working directory
 - ls - Lists files in working directory
 - cd - Change working directory
 - less - View text files
 - file - Specifies files contents
 
Manipulating Files
- cp - Copy files and directories
 - mv - Rename or move files or directories
 - rm - Remove files and directories
 - mkdir - Create directory
 - cat - Display a file
 - is -a - show hidden files
 
Manipulating Processes
- ps aux - To see what processes are running
 - tail - Show a file and the changes to it
 - fg - Bring a background process to the foreground
 - ctrl-c - Stop
 
Assistance Commands
- type - Display information about command type
 - which - Locate a command
 - help - Display reference page for shell commands
 - man - Display on-line command reference