Unix/Linux
ksh에서 symbolic link 파일 체크
bluejacob
2021. 1. 27. 16:29
-L 옵션을 사용한다.
if [ -L symbolic_link_file ]; then
echo "symbolic_link_file 은 symbolic link입니다"
fi