MMDDYYYYYからMMDDYYYYYまでの日付で* .txtファイルを削除する

MMDDYYYYYからMMDDYYYYYまでの日付で* .txtファイルを削除する

rmMMDDYYYYとMMDDYYYYの間の* .txtファイルを削除する方法は?

ベストアンサー1

そしてzsh

autoload age
rm -f -- *.txt(D.e{age 2014/03/20 2014/03/30})

GNUまたはFreeBSDを使用して、次を見つけます。

find . -maxdepth 1 -name '*.txt' -type f -newermt 20140320 \
                                       ! -newermt 20140330 -delete

2014-03-20 00:00:00 と 2014-03-30 00:00:00 の間に変更されたファイル用です。

おすすめ記事