Changes

Jump to navigation Jump to search
371 bytes added ,  15:47, 9 August 2018
no edit summary
Line 5: Line 5:  
== find case ignoring ==
 
== find case ignoring ==
 
  find . -iname "fileName.txt"
 
  find . -iname "fileName.txt"
 +
 +
== find video files ==
 +
find . -type f -exec file -N -i -- {} + | grep video
 +
or if you only want the filenames ...
 +
find . -type f -exec file -N -i -- {} + | sed -n 's!: video/[^:]*$!!p'
 +
 +
== Exclude extension ==
 +
find Vídeos/popcorntime/ -type f -not -name "*.torrent" -not -name "*.jpg" -not -name "*.srt" -not -name "*.txt" -exec mv "{}" /media/rafa/HM_030/video/ \;

Navigation menu