O que cd [-L] [-P] [-e] [- @] faz?

1

Por curiosidade eu digitei cd --help para ver se havia alguma coisa extra que você pode fazer com a mudança de diretório, e ele surgiu com

cd: usage: cd [-L|[-P [-e]] [-@]] [dir]

O que cada opção faz? Eu tentei fazer uma pesquisa DDG, mas não encontrei nada sobre esses parâmetros extras .. alguém poderia explicá-los antes de tentar e encontrar -L exclui todos os arquivos encontrados nesse diretório, mas não exclui o diretório em si ou algo assim haha: -)

    
por HugoNumber1 03.03.2015 / 15:08

1 resposta

5

Experimente help cd :

 Options:
    -L  force symbolic links to be followed: resolve symbolic links in
    DIR after processing instances of '..'

    -P  use the physical directory structure without following symbolic
    links: resolve symbolic links in DIR before processing instances
    of '..'

    -e  if the -P option is supplied, and the current working directory
    cannot be determined successfully, exit with a non-zero status

    -@  on systems that support it, present a file with extended attributes
        as a directory containing the file attributes
    
por terdon 03.03.2015 / 15:11