Spyke

Replies

linux

Comment on

Using alias of path in commands?

You should be using a variable not an alias.

Variables in bash have a few sharp edges; one of which is that spaces act as a delimiter and turn the variable into a list.

The other being that sometimes escaping and unescaping the contents of a variable can be stupidly tricky. This is why a lot of people who use bash do not like spaces in directory or file names.

You reached the end