Possible Duplicate:
Linux file deletion error
I'm trying to run a script that links with a filename to move it into another directory. I'm very new to Linux so I'm having a bit bother with it. this is what I have:
#!/bin/bash
echo "Move the file?"
echo "Y/N"
read ans
case "$ans" in
Y) echo "`readlink -f $1`" >> & mv $1 >> ~/suc ;;
N) echo "restart" ;;
esac
I'd like to know how to run this ./script "filename" so I can choose any file and move it to that directory. thanks for the help and sorry if I sound a little all over the place!