diff --git a/Programming_Languages/Shell_Scripting/Passing_arguments_to_scripts.md b/Programming_Languages/Shell_Scripting/Passing_arguments_to_scripts.md index 8d1d2e4..7f8521d 100644 --- a/Programming_Languages/Shell_Scripting/Passing_arguments_to_scripts.md +++ b/Programming_Languages/Shell_Scripting/Passing_arguments_to_scripts.md @@ -3,7 +3,7 @@ tags: - Programming_Languages - shell --- - +# Passing arguments to scripts ## Relation between commands and programs Whenever we issue a command in bash we are really running an executable program that is associated with the command. This is why when we create our own bash scripts we must run `chmod` to make them executables. When we issue a command like `./file.sh` we are running an executable program.