Ultimate Sass-Scss Cheatsheet [Live Doc]



This content originally appeared on DEV Community and was authored by Mohammed Ali

  • Always inside a folder
clear                       // clear the screen
ls                          // list file contents
cd ..                       // Switch to parent directory
mkdir <folder-name>         // Make directory
cd <folder-name>            // Change directory
touch <file.extension>      // Create a file with the extension provided
cp index.js ..              // Copy file into parent directory
mv script.js ..             // Move file into parent directory
rm index.js                 // Permanently delete the file
rm -r <directory-name>      // Delete the directory
rm script.js index.js       // Permanently delte multiple files
open hero.jpg               // Will open the pic in default pic viewer


This content originally appeared on DEV Community and was authored by Mohammed Ali