Member-only story
+99 Linux, Laravel, NPM & VIM Commands Cheat Sheet For DevOps
A comprehensive list of Linux, Laravel, NPM & VIM commands cheat sheet, shortcut and tips to speed up DevOps, server engineer and backend developers server development.

Do you find it hard to remember all the commands in Linux, for Node.js, Laravel, NPM, Apache, Bitnami, MySQL, Cronjob, Supervisor, Websocket, VIM editor, SSL, GCP and COMPOSER? Here is the master list of all possible frequent usage of commands in my DevOps operation throughout the decade.
Directory Operations
- pwd (Show current directory)
- mkdir my_folder (Create a new directory)
- mkdir -p example/myfolder/new (Create a nested directory)
- cd my_folder (Navigate to my_folder)
- cd example/myfolder/new (Navigate to example/myfolder/new folder)
- cd .. (Navigate go up a directory)
- ls -a (List files, -a all files including hidden files. Files like .env and .htaccess always hidden. This extra command will show all the hidden files in that folder)
File Operations
- touch my_file (Create my_file)