Ubuntu command: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 33: | Line 33: | ||
sudo find . -name "*.tar.gz" | xargs gunzip | sudo find . -name "*.tar.gz" | xargs gunzip | ||
step2 | step2 | ||
sudo find . -name "*.tar" | xargs tar -xvf | sudo find . -name "*.tar" | xargs -n1 tar -xvf |
Latest revision as of 08:19, 9 July 2024
save history to file
history > history_for_print.txt
check size
sudo apt install ncdu
ncdu
unzip .tar.gz
step1
gzip -d this_is_the_file.tar.gz
step2
tar -xvf this_is_the_file.tar
step1
sudo find . -name "apicem-1.4.3.1009.tar.gz" | xargs gunzip -d
step2
sudo find . -name "apicem-1.4.3.1009.tar" | xargs tar -xvf
step1
sudo find . -name "*.tar.gz" | xargs gunzip
step2
sudo find . -name "*.tar" | xargs -n1 tar -xvf