Czwarte_21

 0    21 fiche    michalesq
Imprimir jogar verifique-se
 
questão - resposta -
How to navigate right in vim/vi
começar a aprender
right arrow or L
How to navigate top in vim/vi
começar a aprender
top arrow or k
How to navigate down in vim/vi
começar a aprender
down arrow or j
How to in vi/vim copy entire line where the content is
começar a aprender
yy
How to in vi/vim paste previously copied content
começar a aprender
p
How to undo changes in vi/vim
começar a aprender
u
how to cut line in vi/vim
começar a aprender
dd
How to go to the bottom of the doc
começar a aprender
GG
How to go to the top of the doc
começar a aprender
1 + G
How to remove 21 lines at once?
começar a aprender
21dd
if you want to run linux command from VI
começar a aprender
:!<linux command>
Command to replace all 'words' in a document with different word
começar a aprender
%s/word_to_replace/word_I_want_to_replace/g
Two types of links to another file
começar a aprender
symlinks and hard links
how to create symlink
começar a aprender
ln -s /etc/motd motd
Can symlinks work across file systems
começar a aprender
yes
Can hardlinks work across file systems
começar a aprender
no
How to create hard link
começar a aprender
ln VNCHOWTO vnchowto
Symlink permissions - if user can edit file1, it does not mean it can edit file2.
começar a aprender
true
What is inode?
começar a aprender
An inode is an entry in inode table, containing information (the metadata) about a regular file and directory
Hardlinks - does permission change on one file change rights on the other?
começar a aprender
yes
Hardlinks - will removal of one file in the hardlink will remove the second file in the same hardlink?
começar a aprender
No

Você deve entrar para postar um comentário.