Bir dosya olup olmadığını ve -L ile sembolik bir bağlantı olup olmadığını kontrol edebilirim
for file in *; do
if [[ -L "$file" ]]; then echo "$file is a symlink"; else echo "$file is not a symlink"; fi
done
ve -d ile bir dizin ise:
for file in *; do
if [[ -d "$file" ]]; then echo "$file is a directory"; else echo "$file is a regular file"; fi
done
Ancak, yalnızca dizinlere olan bağlantıları nasıl test edebilirim?
Bir test klasöründeki tüm vakaları simüle ettim:
/tmp/test# ls
a b c/ d@ e@ f@
/tmp/test# file *
a: ASCII text
b: ASCII text
c: directory
d: symbolic link to `c'
e: symbolic link to `a'
f: broken symbolic link to `nofile'
shopt -s dotglob