13 lines
165 B
Bash
13 lines
165 B
Bash
#!/bin/bash
|
|
if [ ! -f $1.tex ];
|
|
then
|
|
touch $1.tex
|
|
fi
|
|
if [ ! -d $1/image ];
|
|
then
|
|
mkdir -p $1/image
|
|
fi
|
|
|
|
cp -u /mnt/z/zmusic/GrailHeart/opus/$1/image/*.jpg $1/image
|
|
|