Re: how to enter a folder named "a a"



On Tue, 28 Mar 2006 16:14:01 +0200, ti1242350 wrote:

all failed, what is your OS? mine is redhat

$ cd "a a"
-bash: cd: a a: No such file or directory
$ cd 'a a'
-bash: cd: a a: No such file or directory
$ cd ./'a a'
-bash: cd: ./a a: No such file or directory
$ cd \"a\ a\"
-bash: cd: "a a": No such file or directory
$ ls
a a
$


If that happens to be the only directory in the current directory that
starts with 'a' then "cd a*" should also work.

.