Command line basics
https://www.youtube.com/watch?v=5XgBd6rjuDQ
base command~$ [program] [option] [argument]
pwd > where am I?
ls > list
ls -l > list in long format
press Tab > autocomplete
clear > clear screen
mkdir > make directory
rmdir > remove direcory
cd [directoryname] > enter directory
cd ../ >go a directory back
touch index.html > make the file
rm index.html > remove the file
nano index.html > open nano and create index.html
ssh targetserver > get into a server
scp /from/this/path/file0.zip /to/another/path/file0.zip > secure copy of target to destination
base command~$ [program] [option] [argument]
pwd > where am I?
ls > list
ls -l > list in long format
press Tab > autocomplete
clear > clear screen
mkdir > make directory
rmdir > remove direcory
cd [directoryname] > enter directory
cd ../ >go a directory back
touch index.html > make the file
rm index.html > remove the file
nano index.html > open nano and create index.html
ssh targetserver > get into a server
scp /from/this/path/file0.zip /to/another/path/file0.zip > secure copy of target to destination
Comments
Post a Comment