C-x C-q
desativa a leitura somente para o buffer , não para o arquivo.
A finalidade de C-x C-q
é evitar que você altere acidentalmente o conteúdo de um buffer (seja ou não um buffer de arquivo).
Para alterar as permissões de um arquivo , use um dos seguintes:
- Comando
chmod
- Dired, com
M
(comandodired-do-chmod
)
Use C-h f
para ver o documento de cada comando:
chmod
is an alias forset-file-modes
insubr.el
.
(chmod FILENAME MODE)
Set mode bits of file named
FILENAME
toMODE
(an integer). Only the 12 low bits ofMODE
are used.Interactively, mode bits are read by
read-file-modes
, which accepts symbolic notation, like thechmod
command from GNU Coreutils.
dired-do-chmod
is an interactive autoloaded compiled Lisp function indired-aux.el
.It is bound to
M
,<menu-bar> <operate> <chmod>
.
(dired-do-chmod &optional ARG)
Change the mode of the marked (or next
ARG
) files. Symbolic modes likeg+w
are allowed. TypeM-n
to pull the file attributes of the file at point into the minibuffer.