diff --git a/.gitignore b/.gitignore index 62933f0..4da9dc4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ -# ---> macOS +# ---> macOS .DS_Store .AppleDouble .LSOverride @@ -24,12 +24,14 @@ Icon Network Trash Folder Temporary Items .apdisk - -# ---> CMake -CMakeCache.txt -CMakeFiles -CMakeScripts -Makefile -cmake_install.cmake -install_manifest.txt - + +# ---> CMake +CMakeCache.txt +CMakeFiles +CMakeScripts +Makefile +cmake_install.cmake +install_manifest.txt + +# Pycharm +.idea/ \ No newline at end of file diff --git a/README.md b/README.md index d2b6fca..9c11f78 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,21 @@ # learn_bash -A repo dedicated to getting better at Bash Shell scripting \ No newline at end of file +A repo dedicated to getting better at Bash Shell scripting + +## Commands + +Add read and execute to a script using the DAC who symbols `u`, `g`, `o`. The ` a` symbol is equivalent to `ugo`. Both the read and execute bits must be set for the shell to read then execture a shell scripte. +```bash +chmod u+rx