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

您必须登录才能发表评论。