Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试做一个小脚本来检索一些文件。我要做的是从报告中复制文件,但仅复制为特定日期创建的文件(例如:仅在 11 月 11 日创建的文件)。
您知道如何执行此操作吗?
老实说,我不知道这是否适用于 ksh,我已经在 bash 和 zsh 中尝试过。
困难的操作是检索所有文件,例如今天更改的文件
find . -type f -newermt 2013-11-11 ! -newermt 2013-11-12 >list
...现在您有了一个列表,因此您可以对其进行迭代并将每个条目复制到您想要的任何位置
while read file; do cp "$file" $destination done <list