Page 1 of 1

linux basic commands

Posted: 11 Dec 2022, 18:32
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