Search found 1 match
- March 17th, 2012, 6:18 pm
- Forum: Post-Processing Scripts
- Topic: [Linux] moving avi-files
- Replies: 1
- Views: 3563
Re: [Linux] moving avi-files
is there a way to edit this to also add support to move mp4's and mkv's as well please? EDIT: Nevermind i think i got it under control now..... #!/bin/bash cd "$1" FILES=`ls *.avi *.mp4 *.mkv | grep -iv sample` echo "moving avi files..." echo $FILES a=0; F_ARRAY=( $FILES ) for fi...