Ubuntu command: Difference between revisions

From wiki karavi
Jump to navigation Jump to search
(Created page with " save history to file history > history_for_print.txt")
 
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 2: Line 2:
save history to file
save history to file


history > history_for_print.txt
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

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