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

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