评论 (10)|发表评论
[1]来自 - 四川成都 的 Firefox/Linux 用户 发表于 2015-06-15 09:17 的评论:评论长度有限制,所以需要自行拼接一下。
for d in $(find /opt/ubu -type d -print | sed 's/^\/opt\/ubu//');
do
if [ ! -d "$d" ]; then
ln -s "/opt/ubu$d" "$d"
fi;
done
IFS=$IFS_backup
find /opt/ubu -type f -print | sed 's/\/opt\/ubu//' | xargs -I [] ln -s "/opt/ubu[]" "[]"
find /opt/ubu -type l -print | sed 's/\/opt\/ubu//' | xargs -I [] ln -s "/opt/ubu[]" "[]"
find /opt/ubu -type b -print | sed 's/\/opt\/ubu//' | xargs -I [] ln -s "/opt/ubu[]" "[]"
find /opt/ubu -type c -print | sed
分享到微信
打开微信,点击顶部的“╋”,
使用“扫一扫”将网页分享至微信。