Evitar que o Nano crie arquivos .save?

1

Eu tenho um problema com o editor Nano . Se ele sair inesperadamente, ele deixará para trás .save arquivos, que são apenas versões das edições que eu estava fazendo. Existe uma maneira de desativar esse comportamento?

    
por Levi H 20.09.2018 / 12:23

2 respostas

1

De O homem de Nano

In some cases nano will try to dump the buffer into an emergency file. This will happen mainly if nano receives a SIGHUP or SIGTERM or runs out of memory. It will write the buffer into a file named nano.save if the buffer didn’t have a name already, or will add a ".save" suffix to the current filename. If an emergency file with that name already exists in the current directory, it will add ".save" plus a number (e.g. ".save.1") to the current filename in order to make it unique. In multibuffer mode, nano will write all the open buffers to their respective emergency files.

Portanto, é um arquivo de emergência nano onde seu buffer é esvaziado. O sinalizador -F (−−multibuffer) habilitaria vários buffers de arquivo, se disponível. O sinalizador -R (restrito) ou restrito, orientará o Nano a não ler ou gravar em qualquer arquivo não especificado na linha de comando; leia qualquer arquivo nanorc; permitir a suspensão; permitir que um arquivo seja anexado, prefixado ou salvo com um nome diferente, se já tiver um; ou use arquivos de backup ou verificação ortográfica. Também acessível chamando nano com qualquer nome que comece com "r" (por exemplo, "rnano").

    
por 20.09.2018 / 13:03
0

A opção -R / --restricted desativará os salvamentos (bem como alguns outros recursos):

Restricted mode: don't read or write to any file not specified on the command line; read any nanorc files; allow suspending; allow a file to be appended to, prepended to, or saved under a different name if it already has one; or use backup files or spell checking. Also accessible by invoking nano with any name beginning with 'r' (e.g. "rnano")

    
por 20.09.2018 / 12:32

Tags