- 论坛徽章:
- 0
|
ls -l 当前目录的结果
-rw-r--r-- 1 0910800 student 2 04-16 13:23 (*)$
-rw-rw-rw- 1 0910800 student 81 02-25 16:28 everyone_can_edit_this_file
-rwxr--r-- 1 0910800 student 280 04-16 14:34 findFile.sh
lrwxrwxrwx 1 0910800 student 11 04-20 20:12 lfindfile -> findFile.sh
lrwxrwxrwx 1 0910800 student 10 04-16 12:35 lmyshell -> myshell.sh
-rwxr--r-- 1 0910800 student 290 04-16 15:15 mailExist.sh
-rw-r--r-- 1 0910800 student 0 04-16 12:47 myshell.sh
drwxr-xr-x 2 0910800 student 4096 04-20 19:19 test
-rw-r--r-- 1 0910800 student 20480 04-15 16:29 test.tar
现在 需要 找到链接文件:
lrwxrwxrwx 1 0910800 student 11 04-20 20:12 lfindfile -> findFile.sh
lrwxrwxrwx 1 0910800 student 10 04-16 12:35 lmyshell -> myshell.sh
并且 需要 判断这些链接的有效性 (指的是 findFile.sh 和myshell.sh 是否有效),
需要:指出哪些是链接文件,哪些是链接文件是无效的。
并且给定的目录不限(当然是有权限的)
shell怎么处理? |
|