• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

cd $idontexist/

Skiddex

Golden Member
is there a way to get something like:

cd $idontexist/

to not go to /
?

for the sake of simplicity, have users who keep doing:

cd $goheree/ instead of cd $gohere/ and end up in the root directory instead of where $gohere is defined. sometimes you can't fix stupid but you can at least make stupid harder to do.
 
Last edited:
It's just text substitution, with the empty string in this case. It's not trying to spite you. If you type "cd /" then you go to /. Why are you putting a slash anyhow? It's not necessary. "cd $there" works fine. If write "cd $theree" you'll end up with "cd" which puts you in the home directory, not sure if that's better. I can't think of anything else which doesn't require typing more. Why are you requiring your users to cd to a certain directory that is kept in an environment variable anyhow? Maybe you can come up with something more convenient?

Perhaps use 'pushd/popd' instead, alias it to something smaller like 'pd'? Then it's easy to go back to where you were. Of course I have no idea if you can train your users to use that.
 
I don't think you can really fix that without making the script smarter, i.e. check to see if the variable is empty before performing the cd.
 
Back
Top