Bash脚本:使用通配符删除文件和目录列表的更好方法

时间:2014-09-12 21:18:36

标签: bash shell if-statement for-loop

我正在尝试传递一个文件列表,包括我要删除的通配符文件和目录,但检查它们是否在删除之前先存在。如果删除它们,请通知目录已删除,而不是目录中的每个单独文件。即如果我删除/root/*.tst只是说,"我删除了* .tst"。

#!/bin/bash

touch /boot/{1,2,3,4,5,6,7,8,9,10}.tst
touch /root/{1,2,3,4,5,6,7,8,9,10}.tst
mkdir /root/tmpdir

#setup files and directories we want to delete
file=/boot/*.tst /root/*.tst /root/tmpdir
for i in $file; do
    if [[ -d "$file" || -f "$file" ]]; then #do I exist
        rm -fr $i
        echo removed $i #should tell me that I removed /boot/*.tst or /root/*.tst or /root/tmpdir
    else
        echo $i does not exist # should tell me if /boot/*.tst or /root/*.tst or /root/tmpdir DNE
    fi
done

我似乎无法将单引号或双引号组合或转义*使上述内容符合我的要求。

4 个答案:

答案 0 :(得分:2)

在解释为什么您的代码失败之前,您应该使用以下内容:

for i in /boot/*.txt /root/*.txt /root/tmpdir; do
    # i will be a single file if a pattern expanded, or the literal
    # pattern if it does not. You can check using this line:
    [[ -f $i ]] || continue
    # or use shopt -s nullglob before the loop to cause non-matching
    # patterns to be silently ignored
    rm -fr "$i"
    echo removed $i
done

似乎需要将i设置为三种模式中的每一种,这有点棘手并且应该避免,因为您使用的大多数操作符都需要单个文件或目录名称,而不是模式匹配多个名字。


您展示的尝试

file=/boot/*.tst /root/*.tst /root/tmpdir

将扩展/root/*.tst并尝试使用扩展中的第一个名称作为命令名称,在变量file具有文字值/boot/*.tst的环境中执行。要在字符串中包含 all 模式,您需要使用

来转义它们之间的空格。
file=/boot/*.tst\ /root/*.tst\ /root/tmpdir

或更自然地

file="/boot/*.tst /root/*.tst /root/tmpdir"

无论哪种方式,模式还没有扩大;文字*存储在file的值中。然后,您将使用

扩展它
for i in $file    # no quotes!

并且在$file扩展到其文字值后,存储的模式将扩展为匹配文件名集。但是,此循环仅适用于不包含空格的文件名;名为foo bar的单个文件将被视为要分配给i的两个单独值,即foobar。在bash中处理此类文件名的正确方法是使用数组:

files=( /boot/*.tst /root/*.tst /root/tmpdir )

# Quote are necessary this time to protect space-containing filenames
# Unlike regular parameter assignment, the patterns were expanded to the matching
# set of file names first, then the resulting list of files was assigned to the array,
# one file name per element.
for i in "${files[@]}"

答案 1 :(得分:1)

您可以替换

file=/boot/*.tst /root/*.tst /root/tmpdir

通过

printf -v file "%s " /boot/*.tst /root/*.tst /root/tmpdir

答案 2 :(得分:1)

shell会自动扩展globs。如果您希望能够在错误消息中打印文字globs,那么您需要引用它们。

rmglob() {
    local glob

    for glob in "$@"; do
        local matched=false

        for path in $glob; do
            [[ -e $path ]] && rm -rf "$path" && matched=true
        done

        $matched && echo "removed $glob" || echo "$glob does not exist" >&2
    done
}

rmglob '/boot/*.tst' '/root/*.tst' '/root/tmpdir'

注意小心使用引用。引用deleteGlobs的参数。函数内的$glob变量是 not 引用(for path in $glob),它会在那时触发shell扩展。

答案 3 :(得分:0)

非常感谢包括John Kugelman在内的每个人的帖子。

这是我最终使用的代码,它提供了两种类型的删除。第一个是更有力的删除一切。第二个保留的目录结构只是删除文件。如上所述,请注意此方法不处理文件名中的空格。

rmfunc() {
local glob

for glob in "$@"; do
    local matched=false 
    local checked=true

    for path in $glob; do
        $checked && echo -e "\nAttempting to clean $glob" && checked=false
        [[ -e $path ]] && rm -fr "$path" && matched=true
    done

    $matched && echo -e "\n\e[1;33m[\e[0m\e[1;32mPASS\e[1;33m]\e[0m Cleaned $glob" || echo -e "\n\e[1;33m[\e[0m\e[1;31mERROR\e[1;33m]\e[0m Can't find $glob (non fatal)."   
done
}

# Type 2 removal
xargfunc() {
local glob

for glob in "$@"; do
    local matched=false
    local checked=true 

    for path in $glob; do
        $checked && echo -e "\nAttempting to clean $glob" && checked=false
        [[ -n $(find $path -type f) ]] && find $path -type f | xargs rm -f && matched=true
    done

    $matched && echo -e "\n\e[1;33m[\e[0m\e[1;32mPASS\e[1;33m]\e[0m Cleaned $glob" || echo -e "\n\e[1;33m[\e[0m\e[1;31mERROR\e[1;33m]\e[0m Can't find $glob (non fatal)."   
fi
}