2010-10-06から1日間の記事一覧

shell::find: missing argument to `-exec'

$ find -mtime +730 -exec echo {}\; find: missing argument to `-exec' \;の前にはスペースが必ず必要 $ find -mtime +730 -exec echo {}\ ; ..... スペースが入るファイル名の場合 $ find /foo/bar -name '* *.txt' -exec rm {} \; $ find /foo/bar -name…