如何使用bash脚本系列传输文件?

发布于 2025-01-18 17:33:31 字数 501 浏览 0 评论 0原文

有两种类型的文件。

  1. Book1_20190715_1A.gz,

  2. Book1_20190715A.gz,

  3. Book2_20190716_1A.gz,

  4. Book2_20190716A.gz

    这里,2019 年是 07 月,2019 年是 07 月。 15 也是日期 16。 这里还有两种类型的文件 _1A &答:

    需要在文件夹中按日期传输。 还需要为不同类型的文件(例如 _1A 和 _1A )传输不同的文件夹。一个

如果我 grep 喜欢 *_1A,那么它会传输 _1A 文件夹,但如果 *A 那么它也会传输 A _1A。

What I do now. Please Help me.

There are two types file.

  1. Book1_20190715_1A.gz,

  2. Book1_20190715A.gz,

  3. Book2_20190716_1A.gz,

  4. Book2_20190716A.gz

    Here, 2019 is year 07 is month & 15 is date also 16.
    Also here is two type file _1A & A.

    Need to Transfer Date-wise in Folder.
    Also Need to transfer different folder for different type file like _1A & A

If I grep like *_1A then it transfer _1A folder But if *A then it transfer A also _1A.

What I do now. Please Help me.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

无言温柔 2025-01-25 17:33:31

您的问题不是很清楚,但这是我认为您正在寻找的:

#!/bin/bash

touch Book1_20190715_1A.gz
touch Book1_20190715A.gz
touch Book2_20190716_1A.gz
touch Book2_20190716A.gz

find . -type f -name "Book*" -print0 | while IFS= read -r -d '' file
do
    # Remove "Book1_"
    tempdirname=${file#*_}
    # Remove ".gz"
    dirname=${tempdirname%\.*}
    echo "$dirname"
    if [[ ! -d "$dirname" ]]
    then
        mkdir "$dirname"
    fi
    /bin/mv "$file" "$dirname"
done
  • 查找列出了所有名为book*的文件,并将该列表发送到时,循环。
  • 从文件名中,使用变量扩展提取目录名称。首先删除“ book1_”,然后删除“ .gz”。如果它在那里,这会给您带来日期和“ _1a”部分。
  • 如果目录尚不存在,则创建目录。
  • 将文件移至目录。

Your question is not very clear, but this is what I think you are looking for:

#!/bin/bash

touch Book1_20190715_1A.gz
touch Book1_20190715A.gz
touch Book2_20190716_1A.gz
touch Book2_20190716A.gz

find . -type f -name "Book*" -print0 | while IFS= read -r -d '' file
do
    # Remove "Book1_"
    tempdirname=${file#*_}
    # Remove ".gz"
    dirname=${tempdirname%\.*}
    echo "$dirname"
    if [[ ! -d "$dirname" ]]
    then
        mkdir "$dirname"
    fi
    /bin/mv "$file" "$dirname"
done
  • the find lists all files named Book* and sends that list to a while loop.
  • from the filename, extract the directory name using variable expansion. First remove "Book1_", then remove ".gz". This leaves you with the date, and the "_1A" portion, if it is there.
  • then create the directory if it does not already exist.
  • move the file to the directory.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文