Newer
Older
invertedlogic / Scripts / copyDVD.sh
@John Ryland John Ryland on 4 Jun 2009 240 bytes
#!/bin/bash

name=`~/.gnome2/nautilus-scripts/.prompt-output.py`
if [ "$?" == "0" ]
then
  exit
fi

cd /media/windows/DVDs/
mkdir "$name"
cd "$name"
cp -r /media/cdrom/* ./

~/.gnome2/nautilus-scripts/.done.py "Finished copying \"$name\""