Trzecie_21

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

Vous devez vous connecter pour poster un commentaire.