Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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!

share|improve this question

marked as duplicate by Brian Campbell, thkala, talonmies, William Pursell, Graviton Nov 22 '12 at 9:27

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

I do not understand what you are trying to do with readlink here - or the purpose of this script, really - but I can give you a couple of hints:

  1. mv takes two arguments:

    mv A.txt B.txt
    
  2. >> is an output redirection operator - it appends the output of the command on its left to the file on its right. I do not believe that you are using it correctly in either of its appearances in your script.

  3. A single & pushes a process (or process pipe) to the background. Perhaps you meant to use && - a conditional execution operator - instead?

P.S.: Is this a homework question?

share|improve this answer
See also my answer to another remarkably similar question... – thkala Nov 21 '12 at 22:17

Not the answer you're looking for? Browse other questions tagged or ask your own question.