Trzecie_21

 0    21 fiszek    michalesq
drukuj graj sprawdź się
 
Pytanie - Odpowiedź -
Find a letter starting with l, ending with x, having exactly 3 other letters in between
rozpocznij naukę
grep 'l... x' <filename>
Display current target
rozpocznij naukę
systemctl get-default
File where you change global settings
rozpocznij naukę
/etc/profile
File where you change user settings
rozpocznij naukę
/etc/bashrc
Application that packs but does not compress
rozpocznij naukę
tar
Application that compress files
rozpocznij naukę
gzip
How to pack a file
rozpocznij naukę
tar -cvf archive. tar /var/log
How to view content of. tar archive?
rozpocznij naukę
tar -tf archive. tar
How to compress an archive
rozpocznij naukę
gzip myarchive. tar
How to pack and compress a file in one line
rozpocznij naukę
tar -czvf archive. tar. gz /var/log
How to decompress gzip archive
rozpocznij naukę
gzip -d myarchive. tar. gz
How to unpack. tar files
rozpocznij naukę
tar -xvf myarchive. tar
How to unpack and decompress. tar. gz archive?
rozpocznij naukę
tar -xzvf myarchive. tar. gz
How to create. tar. archive with star
rozpocznij naukę
star -c -f=myarchive. tar directory
How to list. tar archive with star?
rozpocznij naukę
star -t myarchive. tar
How to unpack. tar archive with star
rozpocznij naukę
star -x -f myarchive. tar
How to decompress. tar. bz diretory with star?
rozpocznij naukę
star -bz -x f=user-logs. tar. bz2
How to jump to the begiining od the command line
rozpocznij naukę
CTRL + A
How to jump to the end of the command line
rozpocznij naukę
CTRL + E
How to jump to the beginning of the word
rozpocznij naukę
CTRL + ARROW
How to navigate left in vim/vi
rozpocznij naukę
left arrow or h

Musisz się zalogować, by móc napisać komentarz.