in reply to Re^3: Filename Surrounded by Quotes in a Scalar Variable Causes Open to Fail
in thread Filename Surrounded by Quotes in a Scalar Variable Causes Open to Fail
Sure, the first command needed the quotes. Otherwise I create 3 directories - namely "with", "a", and "space".C:\>mkdir "with a space" C:\>cd with a space C:\with a space>
There's a similarity with Windows - without the quotes in the first command, directories "with", "a" and "space" will again be created.sisyphus-sis@debian-sis:~$ mkdir "with a space" sisyphus-sis@debian-sis:~$ cd with a space -bash: cd: with: No such file or directory sisyphus-sis@debian-sis:~$ cd "with a space" sisyphus-sis@debian-sis:~/with a space$
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^5: Filename Surrounded by Quotes in a Scalar Variable Causes Open to Fail
by afoken (Chancellor) on Sep 14, 2020 at 12:48 UTC | |
by syphilis (Archbishop) on Sep 14, 2020 at 13:38 UTC |