I am trying to understand the following
$ HDFS_FILE = 'hdfs:///user/svcid/project/app/sample.txt'
-ksh: HDFS_FILE: not found [No such file or directory]
But whenI remove space between
HDFS_FILE< >=< >'hdfs:///user/svcid/project/app/sample.txt'
then it works fine.
$ HDFS_FILE='hdfs:///user/svcid/project/app/sample.txt'
$ echo $HDFS_FILE
hdfs:///user/svcid/project/app/sample.txt
Why does it behave like that?