Ubuntu command
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 tar -xvf