initital upload

This commit is contained in:
2018-11-20 09:38:08 +01:00
commit 60dd031fa6
14 changed files with 242 additions and 0 deletions

24
flush_movies Executable file
View File

@@ -0,0 +1,24 @@
. /root/bin/.config
cd $IN
counter=0
until [ $counter = 64 ]
do
let counter=$counter+1
rename " " "_" *
done
clear
echo "============== Video Files ====================="
echo
ls -lh
for datei in $(ls )
do
echo $datei
read zielname
if [ $zielname != "x" ]
then
mv -v $datei $MOVIES/$zielname
fi
done