Usar man view
one é direcionado para a página man de vim
. Dentro eu encontrei isto:
view Start in read-only mode. You will be protected from writing the files. Can also be done with the "-R" argument.
Estava pesquisando o history
em um servidor e vi meu colega de trabalho usar o comando view
em um arquivo.
Melhor eu posso dizer, ele olha para o seu $EDITOR
e, em seguida, abre o arquivo com ele.
Eu quero saber mais sobre como funciona, mas está se mostrando difícil. Usar man
ou info
on view
apenas retorna a página de ajuda para seu $EDITOR
. Não tem uma página help
e pesquisá-la é obviamente difícil.
Alguma ideia?
Usar man view
one é direcionado para a página man de vim
. Dentro eu encontrei isto:
view Start in read-only mode. You will be protected from writing the files. Can also be done with the "-R" argument.
Eu achei a resposta no meu sistema interessante. Começando com:
type view
view is /usr/bin/view
Então, o que é isso?
file /usr/bin/view
/usr/bin/view: symbolic link to /etc/alternatives/view
file /etc/alternatives/view
/etc/alternatives/view: symbolic link to /usr/bin/vim.basic
Então, no final (pelo menos em sistemas baseados no Ubuntu), é um link simbólico gerenciado por update-alternatives
.
update-alternatives --config view
There are 2 choices for the alternative view (providing /usr/bin/view).
Selection Path Priority Status
------------------------------------------------------------
* 0 /usr/bin/vim.basic 30 auto mode
1 /usr/bin/vim.basic 30 manual mode
2 /usr/bin/vim.tiny 10 manual mode
Press <enter> to keep the current choice[*], or type selection number:
Tags bash