Linux command cheat sheet article contains the Linux commands you frequently use and Linux commands that you need for interviews, exams… etc. with pop up links to man pages. You can bookmark this article and use it when you required while you practicing exams, interviews or while you work.
Basic Commands
Directory Operation Commands
File Operation Commands
Search Operation Commands
grep -o Print only the matching part of the matching line or file grep -w Print only the lines and file names that are matching the whole word grep -i Print the search results ignoring case sensitive grep -c Print the count of the number of matches grep -n Print line numbers while displaying the output grep -r Search recursively, in all files under each directory grep -v Print invert of the match, Search only the lines that do not contain the given word locate [search_name] Search files with specific name find [file_name] Search files with specific name find -empty Search empty files and directories find -user [user_name] Search files owned by [user_name] find -mmin [num] Search files modified less than [num] minute ago find -name [name] Search the files, file name starting with [name]
Keep this Linux command cheat sheet bookmarked with you and it will be helpful when you mostly need it.
You can find 10 Basic Linux Command that will frequently use mostly with examples from here .