タグ

関連タグで絞り込む (2)

タグの絞り込みを解除

Unixと例に関するPhinlodaのブックマーク (1)

  • find examples

    find examples real world FIND usage sudo find / -type f -name *.jpg -exec cp {} . \; find . -type f -size +10000 -exec ls -al {} \; find . -atime +1 -type f -exec mv {} TMP \; # mv files older then 1 day to dir TMP find . -name "-F" -exec rm {} \; # a script error created a file called -F find . -exec grep -i "vds admin" {} \; find . \! -name "*.Z" -exec compress -f {} \; find . -type f \! -nam

  • 1