将当前工作目录中当前日期的所有文件列出到新文件中

发布于 2025-01-15 17:51:40 字数 283 浏览 0 评论 0原文

我正在尝试获取当前目录中列出的当前日期的所有文件的文件名,并将它们列出到同一路径中的新文件中。

#!/bin/bash
for file in /queues/intermediate/outbound/*EXP_GP_$(date %Y-%m-%d)* do  f1=`basename $file`
if [ -f "$file" ];then
        cat >> All_Name $f1;
else
    echo "no files to collect"
 done

I am trying to get the filenames for all the files listed in my current directory for current date and list them into a new file in same path.

#!/bin/bash
for file in /queues/intermediate/outbound/*EXP_GP_$(date %Y-%m-%d)* do  f1=`basename $file`
if [ -f "$file" ];then
        cat >> All_Name $f1;
else
    echo "no files to collect"
 done

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

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

发布评论

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

评论(2

自由范儿 2025-01-22 17:51:40

试试这个:

#!/bin/bash

for file in /queues/intermediate/outbound/\*EXP_GP_$(date +%Y-%m-%d)\*
do

f1=`basename $file`

if [ -f "$file" ]; then
        cat >> All_Name $f1;
else
    echo "no files to collect"
fi

done

还缺少一个“fi”。

Try this:

#!/bin/bash

for file in /queues/intermediate/outbound/\*EXP_GP_$(date +%Y-%m-%d)\*
do

f1=`basename $file`

if [ -f "$file" ]; then
        cat >> All_Name $f1;
else
    echo "no files to collect"
fi

done

There was also a 'fi' missing.

世态炎凉 2025-01-22 17:51:40

这有效

find -maxdepth 1 -mtime -1 | grep -v bash | grep / | sed 's/\.\///' > FileList.txt

this works

find -maxdepth 1 -mtime -1 | grep -v bash | grep / | sed 's/\.\///' > FileList.txt
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文