Czwarte_21

 0    21 adatlap    michalesq
Nyomtatás játszik ellenőrizze magát
 
kérdés - válasz -
How to navigate right in vim/vi
kezdjen tanulni
right arrow or L
How to navigate top in vim/vi
kezdjen tanulni
top arrow or k
How to navigate down in vim/vi
kezdjen tanulni
down arrow or j
How to in vi/vim copy entire line where the content is
kezdjen tanulni
yy
How to in vi/vim paste previously copied content
kezdjen tanulni
p
How to undo changes in vi/vim
kezdjen tanulni
u
how to cut line in vi/vim
kezdjen tanulni
dd
How to go to the bottom of the doc
kezdjen tanulni
GG
How to go to the top of the doc
kezdjen tanulni
1 + G
How to remove 21 lines at once?
kezdjen tanulni
21dd
if you want to run linux command from VI
kezdjen tanulni
:!<linux command>
Command to replace all 'words' in a document with different word
kezdjen tanulni
%s/word_to_replace/word_I_want_to_replace/g
Two types of links to another file
kezdjen tanulni
symlinks and hard links
how to create symlink
kezdjen tanulni
ln -s /etc/motd motd
Can symlinks work across file systems
kezdjen tanulni
yes
Can hardlinks work across file systems
kezdjen tanulni
no
How to create hard link
kezdjen tanulni
ln VNCHOWTO vnchowto
Symlink permissions - if user can edit file1, it does not mean it can edit file2.
kezdjen tanulni
true
What is inode?
kezdjen tanulni
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?
kezdjen tanulni
yes
Hardlinks - will removal of one file in the hardlink will remove the second file in the same hardlink?
kezdjen tanulni
No

Kommentár közzétételéhez be kell jelentkeznie.