我有以下内容:
read -p 'Delete old symlinks? y/n: ' prompt
if [ $prompt == [yY] ]
then
current_dir=$(pwd)
script_dir=$(dirname $0)
if [ $script_dir = '.' ]
then
script_dir="$current_dir"
fi
for sym in {find $PATH -type l -xtype d -lname "~"}
do
rm $sym
echo "Removed: $sym"
done
fi
我想要实现的目标如下:
~
(主目录)中的所有符号链接并对它们执行for循环,这将删除它们并输出它删除的那个。虽然现在它没有删除部分,但其余的工作正常。我没有包含有效的部分,它只是一堆ln -s
。
我在Mac OS X Mountain Lion(10.8.2)中,使用Zsh作为shell,它位于.sh
文件中。
我遇到的问题是没有任何反应,所以它只是说:
ln: /Users/eduan/.vim/vim: File exists
ln: /Users/eduan/.vimrc: File exists
ln: /Users/eduan/.gvimrc: File exists
Done...
等
非常感谢您提供的任何帮助!
修改
我现在有以下内容:
read -p 'Delete old symlinks? y/n: ' prompt
if [ $prompt == [yY] ]
then
find ~ -type l | while read line
do
rm -v "$line"
done
fi
答案 0 :(得分:16)
find /path -type l | xargs rm
第一部分列出了符号链接。 Xargs
表示,对于每个返回的值,都会发出rm
答案 1 :(得分:2)
这个怎么样?
find ~ -type l | while read line
do
rm -v "$line"
done
答案 2 :(得分:-1)
我能够解决问题,结果是if条件不起作用。无论如何,谢谢你的帮助! :)