2
votes
How to check if a var is a number in UNIX shell
Shell variables have no type, so the simplest way is to use the return type test command:
if [ $var -eq $var 2> /dev/null ]; then ...
(Or else pars …
1
vote
Unix: How to check permissions of a specific folder
You can also use the stat command if you want detailed information on a file/directory. (I precise this as you say you are learning ^^)
…
1
vote
/usr/bin/env questions regarding shebang line pecularities
You should carefully read the wikipedia article about shebang.
When your system sees the magic number corresponding …
