Executando o script feito no código do Visual Studio (no Windows) no WSL O Ubuntu retorna “linha 2: $ '\ r': comando não encontrado” [fechado]

3

Quando tento executar um script feito com o Visual Studio Code no Windows na minha instalação do Ubuntu WSL, recebo o erro:

line 2: $'\r': command not found

Eu encontrei a pergunta abaixo:

Como faço para corrigir "$ '\ r': comando não encontrado" erros executando scripts Bash no WSL? .

Isso tudo faz sentido, no entanto, existe uma maneira / configuração no Visual Studio Code no Windows para não ter que usar o utilitário dos2unix toda vez?

    
por 0siris 15.05.2018 / 02:20

1 resposta

4

In the bottom-right corner of the window there is an indicator that says CRLF or LF [highlighted in green on the picture] which will let you set the line endings for a particular file. Clicking on the text will allow you to change the line endings as well.

enter image description here

CR is a bytecode for carriage return (from the days of typewriters) and LF similarly, for line feed. It just refers to the bytes that are placed as end-of-line markers.

Fontes e referências:

por pa4080 15.05.2018 / 06:18