Trzecie_21

 0    21 flashcards    michalesq
In chơi tự kiểm tra
 
câu hỏi - câu trả lời -
Find a letter starting with l, ending with x, having exactly 3 other letters in between
bắt đầu học
grep 'l... x' <filename>
Display current target
bắt đầu học
systemctl get-default
File where you change global settings
bắt đầu học
/etc/profile
File where you change user settings
bắt đầu học
/etc/bashrc
Application that packs but does not compress
bắt đầu học
tar
Application that compress files
bắt đầu học
gzip
How to pack a file
bắt đầu học
tar -cvf archive. tar /var/log
How to view content of. tar archive?
bắt đầu học
tar -tf archive. tar
How to compress an archive
bắt đầu học
gzip myarchive. tar
How to pack and compress a file in one line
bắt đầu học
tar -czvf archive. tar. gz /var/log
How to decompress gzip archive
bắt đầu học
gzip -d myarchive. tar. gz
How to unpack. tar files
bắt đầu học
tar -xvf myarchive. tar
How to unpack and decompress. tar. gz archive?
bắt đầu học
tar -xzvf myarchive. tar. gz
How to create. tar. archive with star
bắt đầu học
star -c -f=myarchive. tar directory
How to list. tar archive with star?
bắt đầu học
star -t myarchive. tar
How to unpack. tar archive with star
bắt đầu học
star -x -f myarchive. tar
How to decompress. tar. bz diretory with star?
bắt đầu học
star -bz -x f=user-logs. tar. bz2
How to jump to the begiining od the command line
bắt đầu học
CTRL + A
How to jump to the end of the command line
bắt đầu học
CTRL + E
How to jump to the beginning of the word
bắt đầu học
CTRL + ARROW
How to navigate left in vim/vi
bắt đầu học
left arrow or h

Bạn phải đăng nhập để đăng bình luận.