I'm pretty new to shell programming languages. Why does the following code echo false after printing "File or directory not found."?
#!/bin/sh -xu
ARG_PATH="/srv/path/to/Something"
if ["$ARG_PATH" = "/srv/path/to/Something"] 
then 
   echo "true!" 
else
   echo "false!"
fi
I've tried running the code in sh and bash, doesn't really change anything.
 
     
    