我有一项任务要求我删除目录中没有符号链接的所有文件夹,只保留符号链接文件夹和符号链接。
如果我有3个资源:link,linked_folder和unlinked文件夹。将保留link和linked_folder。
目前我已设法获取此代码,该代码适用于我们的文件命名结构,但我想知道是否有更清晰的解决方案?
protected_folders=`ls -l | awk '/^l/ {printf $10}' | tr '/' '|'`;
symlinks=`ls -l | awk '/^l/ {print $8}' | tr "\n" "|"`;
protected_resources=$protected_folders$symlinks;
protected_resources=${protected_resources:0:${#protected_resources}-1};
folders_to_delete=`ls | grep -v -E "$protected_resources"`;
echo $folders_to_delete | tr '\n' ' ' | tr ' ' '\000' | xargs -0 rm -rf
我知道上面的命令可以在一行上完成,但我把它分开了,因为我被要求让它更“可读”。
任何帮助将不胜感激。
答案 0 :(得分:3)
将符号链接及其目标移动到新目录可能更容易,然后用新目录替换旧目录。
警告:这只是一个粗略的草图,为您提供想法。 [更新:清理并使其不像伪代码]
# Make an empty directory to hold the symlinks and targets
# that you want to keep
DIR_TO_CLEAN=/the/directory/to/clean/up
TMP_DIR=$(mktemp -d)
for x in $DIR_TO_CLEAN/*; do
# Move each symlink and its target to the new directory
[[ -h $x ]] && mv $x $(readlink $x) $TMP_DIR
done
# FIRST!!!, confirm that $TMP_DIR has everything you want to keep,
# and $DIR_TO_CLEAN has nothing you want to keep
rm -rf $DIR_TO_CLEAN
mv $TMP_DIR $DIR_TO_CLEAN
答案 1 :(得分:0)
mkdir "./onlylinkedfiles" && cd "./onlylinkedfiles"
tar -ch "../symlinks" | tar -x --strip-components=1
并且您只获得当前目录中../symlinks/
中符号链接的所有文件和目录。
cd "delete_here"
f="../symlinkshere"; mkdir ../temporary && pushd ../temporary && tar -vch "${f}" | tar -x --strip-components=1 && rm -rf "`dirs +1`" && cd .. && mv temporary "`dirs +1`" && popd
之后,当前目录仅包含在../symlinkshere/
处获得符号链接的文件。
# Specify directory where symlinks are:
f="../symlinkshere";
# Create temporary directory:
mkdir ../temporary &&
# Remember current and change cwd to temporary folder:
pushd ../temporary &&
# Copy all symlinked files and directories to cwd:
tar -vch "${f}" | tar -x --strip-components=1 &&
# Remove directory where we been when pushd called:
rm -rf "`dirs +1`" &&
# Cd out of temporary dir:
cd .. &&
# Rename temporary to original cwd
mv temporary "`dirs +1`" &&
# Go back to path where we started:
popd
它适用于当前目录,并采用一个参数作为符号链接的路径
cd /path/to/clean
replacebylinks.sh /here/is/symlinks/
文件:的 ~/bin/replacebylinks.sh
的
#!/bin/bash
tmp="`mktemp -d`"
sourced="`readlink -f ${1}`"
workd="`pwd -P`"
cd "${tmp}"
tar -vchC "${sourced}" . | tar -xv --strip-components=1
rm -vrf "${workd}"
cd ..
mv -v "${tmp}" "${workd}" && cd "${workd}"
-v
。
tar -chC "source" .
可能更好,因为没有-C source
整个源目录树保留在目标位置。对于绝对路径,这从/
root开始。
答案 2 :(得分:0)
您可以按如下方式找到要保留的所有目录:
keep_me=$(for link in $(find . -type l); do find -L . -samefile $link; done)
您可以将此与@chepner的解决方案结合使用,如下所示:
mkdir ../new_tmp_dir
for link in $(find . -type l)
do
find -L . -samefile $link -print0
done | xargs -0 -I{} mv {} ../new_tmp_dir
rm -rf *
mv ../new_tmp_dir/* .
如果您移动的目录深度超过一级,则可能需要修改查找语句(使用-maxdepth=1
)。
答案 3 :(得分:0)
我不知道你是否称之为清洁,优雅或荒谬复杂。这是很多设置,但最后几行“实际工作”已经足够清晰了。
# map - apply a function to all arguments
map() {
fn="$1"
shift
for x in "$@"; do
$fn $x
done
}
echoif() { if $1 "$2" ; then echo $2 ; fi }
# use map/echoif to find items that meet a criteria in a list
filter() {
op=$1
shift
map "echoif $op" "$@"
}
# list grep, essentially
find_in_list() {
item=$1
shift
itemis() { test $item == $1 ; }
res=`filter itemis "$@"`
test -n "$res"
}
not() { if $* ; then return 1; fi ; }
not_in_list() { not find_in_list $* ; }
# utility functions for filtering
islink() { test -L $1 ; }
isdir() { test -d $1 ; }
# actual work starts here
links=`filter islink *`
dests=`map readlink $links`
should_delete() { not_in_list $1 $links $dests ; }
dirs=`filter isdir *`
todelete=`filter should_delete $dirs`
# you know what to do here
echo rm -rf $todelete