nsbin/audioskripte/hierherverschieben.sh
Nico Schottelius f9111cb472 add old scripts to move around audiodata
Signed-off-by: Nico Schottelius <nico@denkbrett.schottelius.org>
2008-07-29 14:20:54 +02:00

15 lines
255 B
Bash
Executable file

#!/bin/sh
#set -x
BASEDIR=$(dirname $0)
FILE=$1
SUBDIR=$(echo $FILE | sed 's;.*/\(.*\);\1;' | sed 's/^\(.\).*/\1/' | tr 'A-Z' 'a-z')
DDIR="$BASEDIR/$SUBDIR"
set -e
echo "Creating $DDIR"
mkdir -p "$DDIR"
echo "Moving $FILE to $DDIR"
mv "$FILE" "$DDIR"