I want to set environment variable in linux and did the same by giving command
export PATH=$PATH:.
But getting error Bad : modifier in $ (.).<
You might want to try this:
export PATH="${PATH}:."
I don't like having the current directory in the path, but at the end it's fairly safe.