【linux】 未来のタイムスタンプのファイルを探す
問題
あるディレクトリにある未来のタイムスタンプのファイルを探したい。
探して、タイムスタンプを現在に変えたい。
答え
# cd /foo/bar # find . -type f -mmin -0 -exec ls -la {} \; (↑ 一応確認でls) # find . -type f -mmin -0 -exec touch {} \; (↑ touchでタイムスタンプ変更)
あるディレクトリにある未来のタイムスタンプのファイルを探したい。
探して、タイムスタンプを現在に変えたい。
# cd /foo/bar # find . -type f -mmin -0 -exec ls -la {} \; (↑ 一応確認でls) # find . -type f -mmin -0 -exec touch {} \; (↑ touchでタイムスタンプ変更)
コメント