8
Symlink olup olmadığını kontrol etme
Bash'da bir symlink olup olmadığını kontrol etmeye çalışıyorum. İşte denedim. mda=/usr/mda if [ ! -L $mda ]; then echo "=> File doesn't exist" fi mda='/usr/mda' if [ ! -L $mda ]; then echo "=> File doesn't exist" fi Ancak, bu işe yaramaz. Eğer '!' dışarıda bırakılır, asla tetiklenmez. Ve eğer …