Bash Scripting Cheatsheet
For giving read/write/execute permission to user and r/x permission to "groups" and "others":
chmod 755 script.sh
For checking a command type (if its a shell built in command or a binary):
type echo OR type -a echo
-a flag displays the list in or...
sum42069.hashnode.dev1 min read