[root@wingwu shell]# ln -s /root/shell/test.tar /root/shell/test/aaaa
[root@wingwu shell]# [[ /root/shell/test.tar -ef /root/shell/test/aaaa ]]
[root@wingwu shell]# echo $?
0
[root@wingwu shell]# cp /root/shell/test.tar /root/shell/test/aaaa
[root@wingwu shell]# [[ /root/shell/test.tar -ef /root/shell/test/aaaa ]]
[root@wingwu shell]# echo $?
1
[root@wingwu shell]# ln /root/shell/test.tar /root/shell/test/aaaa
[root@wingwu shell]# [[ /root/shell/test.tar -ef /root/shell/test/aaaa ]]
[root@wingwu shell]# echo $?
0
|