Czwarte_21

 0    21 フィッシュ    michalesq
印刷 遊びます 自分をチェック
 
質問 - 答え -
How to navigate right in vim/vi
学び始める
right arrow or L
How to navigate top in vim/vi
学び始める
top arrow or k
How to navigate down in vim/vi
学び始める
down arrow or j
How to in vi/vim copy entire line where the content is
学び始める
yy
How to in vi/vim paste previously copied content
学び始める
p
How to undo changes in vi/vim
学び始める
u
how to cut line in vi/vim
学び始める
dd
How to go to the bottom of the doc
学び始める
GG
How to go to the top of the doc
学び始める
1 + G
How to remove 21 lines at once?
学び始める
21dd
if you want to run linux command from VI
学び始める
:!<linux command>
Command to replace all 'words' in a document with different word
学び始める
%s/word_to_replace/word_I_want_to_replace/g
Two types of links to another file
学び始める
symlinks and hard links
how to create symlink
学び始める
ln -s /etc/motd motd
Can symlinks work across file systems
学び始める
yes
Can hardlinks work across file systems
学び始める
no
How to create hard link
学び始める
ln VNCHOWTO vnchowto
Symlink permissions - if user can edit file1, it does not mean it can edit file2.
学び始める
true
What is inode?
学び始める
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?
学び始める
yes
Hardlinks - will removal of one file in the hardlink will remove the second file in the same hardlink?
学び始める
No

コメントを投稿するにはログインする必要があります。