Some useful linux terminal commands

Here are some Linux terminal commands that I find useful for me.

Working with text files
touch file.txt
nano file.txt
cat file.txt 
more largefile.txt
less largefile.txt
head -n 5 file.txt
tail -n 5 file.txt

🌐 Change language