It is possible to make a symbolic link between two symbolic link ? like this:
可以在两个符号链接之间建立符号链接吗?喜欢这个:
root # ls -al /usr/sbin/ash
lrwxrwxrwx 1 root root 17 Mar 23 20:59 /usr/sbin/ash -> /usr/sbin/busybox
root # ls -l /bin/sh
lrwxrwxrwx 1 root root 13 Mar 23 21:00 /bin/sh -> /usr/sbin/ash
1 个解决方案
#1
1
Yes, it's possible. You can create them like that:
是的,这是可能的。您可以像这样创建它们:
ln -s /usr/sbin/busybox /usr/sbin/ash
ln -s /usr/sbin/ash /bin/sh
#1
1
Yes, it's possible. You can create them like that:
是的,这是可能的。您可以像这样创建它们:
ln -s /usr/sbin/busybox /usr/sbin/ash
ln -s /usr/sbin/ash /bin/sh