Pelo menos duas maneiras:
-
Use o argumento
--
.cd -- -2
Isso usa uma convenção comum às ferramentas GNU, que é não tratar nada que apareça após
--
como uma opção de linha de comando.Como um comentador observou, essa convenção também é definido no padrão POSIX :
Default Behavior: When this section is listed as "None.", it means that the implementation need not support any options. Standard utilities that do not accept options, but that do accept operands, shall recognize
"--"
as a first argument to be discarded.The requirement for recognizing
"--"
is because conforming applications need a way to shield their operands from any arbitrary options that the implementation may provide as an extension. For example, if the standard utility foo is listed as taking no options, and the application needed to give it a pathname with a leading hyphen, it could safely do it as:foo -- -myfile
and avoid any problems with -m used as an extension.
bem como :
Guideline 10:
The argument--
should be accepted as a delimiter indicating the end of options. Any following arguments should be treated as operands, even if they begin with the'-'
character. The--
argument should not be used as an option or as an operand. -
Especifique o caminho explicitamente:
cd ./-2
Isso especifica o caminho explicitamente nomeando o diretório atual (
.
) como ponto de partida.cd $(pwd)/-2 cd /absolute/path/to/-2
Estas são variações do acima. Qualquer número de tais variações pode ser possível; Vou deixar como um exercício para o leitor descobrir todos eles.