Amumu
Amumu

Reputation: 18572

How to view a directory or file with special characters in eshell?

I have a directory with $ at the start of the directory name. How do I cd into it in eshell?

Upvotes: 0

Views: 48

Answers (1)

PrecariousJimi
PrecariousJimi

Reputation: 1533

May I ask, have you tried to put dir name into quotes? Sample eshell session:

~ $ mkdir '$testdir'
~ $ cd '$testdir'
~/$testdir $

Upvotes: 1

Related Questions