Ubuntu command: Difference between revisions

From wiki karavi
Jump to navigation Jump to search
No edit summary
No edit summary
 
(One intermediate revision by the same user not shown)
Line 9: Line 9:


  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

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