Trzecie_21

 0    21 词汇卡    michalesq
打印 检查自己
 
问题 - 答案 -
Find a letter starting with l, ending with x, having exactly 3 other letters in between
开始学习
grep 'l... x' <filename>
Display current target
开始学习
systemctl get-default
File where you change global settings
开始学习
/etc/profile
File where you change user settings
开始学习
/etc/bashrc
Application that packs but does not compress
开始学习
tar
Application that compress files
开始学习
gzip
How to pack a file
开始学习
tar -cvf archive. tar /var/log
How to view content of. tar archive?
开始学习
tar -tf archive. tar
How to compress an archive
开始学习
gzip myarchive. tar
How to pack and compress a file in one line
开始学习
tar -czvf archive. tar. gz /var/log
How to decompress gzip archive
开始学习
gzip -d myarchive. tar. gz
How to unpack. tar files
开始学习
tar -xvf myarchive. tar
How to unpack and decompress. tar. gz archive?
开始学习
tar -xzvf myarchive. tar. gz
How to create. tar. archive with star
开始学习
star -c -f=myarchive. tar directory
How to list. tar archive with star?
开始学习
star -t myarchive. tar
How to unpack. tar archive with star
开始学习
star -x -f myarchive. tar
How to decompress. tar. bz diretory with star?
开始学习
star -bz -x f=user-logs. tar. bz2
How to jump to the begiining od the command line
开始学习
CTRL + A
How to jump to the end of the command line
开始学习
CTRL + E
How to jump to the beginning of the word
开始学习
CTRL + ARROW
How to navigate left in vim/vi
开始学习
left arrow or h

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