linux basic commands

linux docker vm
Post Reply
dev
Site Admin
Posts: 60
Joined: 09 Mar 2021, 17:52

linux basic commands

Post by dev »

Code: Select all

ctrl+u : clear up to the beginning (undo)
ctrl+w : delete just a word
ctrl+a : move cursor at the beginning of line (append)
ctrl+e : move cursor at the end of line (end)

Code: Select all

ls /etc/*release* 
cat /etc/*release*
check OS version

Code: Select all

mkdir testDir
mkdir -p ./testdir1/testdir2/testdir3
Post Reply