#!/bin/bash -x
echo "Enter file name: "
read fileName
fileName=`pwd`"/$fileName"
if [ -f $fileName ]; then
echo "file is present"
fi
Even if I change the value of fileName by adding quotes at starting and end.. The script still doesnt work.
|
Wrapping it in double-quotes works for me:
I believe this will take care of most special characters, including quotes themselves. |
|||
|
Change
causing the error. |
|||
|
|
|
You can quote the filename when you do the -f test. Try this instead
|
|||
|
|
|
You're prepending the pwd even if the user entered an absolute path. Try this:
This will only prepend the pwd if fileName doesn't start with a /. Also, your |
|||
|
|
fileName=$(pwd)/"$fileName"or evenfileName="$PWD/$fileName"; then you just need to worry about the user typing /dev/null rather than a name relative to the current directory (also, perhaps, the user typing ../../../../../../etc/passwd). Final point: middleCapitals look really weird in a shell script. – Jonathan Leffler Jan 15 '10 at 16:37