If the script name has spaces in it, a more robust way is to use "$0" or "$(basename "$0")" to prevent the name from getting mangled or interpreted in any way. In general, it is good practice to always quote variable names in the shell.
|
2 | added 26 characters in body | ||
|
|
||||
|
1 |
|
||
|
If the script name has spaces in it, a more robust way is to use "$0" or "$(basename "$0")" to prevent the name from getting mangled or interpreted in any way. In general, it is good practice to always quote variable names in the shell. |
||||
