diff options
author | simulation <simulation@nlo-ext3.ioq.uni-jena.de> | 2016-02-09 09:54:46 +0100 |
---|---|---|
committer | simulation <simulation@nlo-ext3.ioq.uni-jena.de> | 2016-02-09 09:54:46 +0100 |
commit | 6be0f285adb27f60f058c2937a7885899e17cb88 (patch) | |
tree | be50a15314fe28c5b7b8f721233a34e71ca5b3b4 /postpost/bring_all_avis | |
download | lpic-master.tar.xz |
Diffstat (limited to 'postpost/bring_all_avis')
-rwxr-xr-x | postpost/bring_all_avis | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/postpost/bring_all_avis b/postpost/bring_all_avis new file mode 100755 index 0000000..eb9f1f5 --- /dev/null +++ b/postpost/bring_all_avis @@ -0,0 +1,17 @@ +#!/bin/sh + +for t in $1* +do + if [ -e $t ] + then + for s in $t/Post/*.avi + do + if [ -e $s ] + then + echo $s; + cp "$s" "`basename $t`_`basename $s`"; + fi + done + fi +done + |