bug-bash  

Re: FWD: About Bash Script

pk
Tue, 16 Feb 2010 11:41:50 -0800

Curtis wrote:

> if [! -e b.txt];

Please note that should literally be

if [ ! -e b.txt ];

NOT

if [! -e b.txt];

Try running the latter and you'll get errors.