⚠️ ARCHIVED WEBSITE, NO FURTHER UPDATES ⚠️

Daily Shaarli

All links of one day in a single page.

January 28, 2021

How to check the integrity of tar.gz files in a folder using Linux
find [FOLDER_NAME] -type f -name "*.tar.gz" -exec gunzip -tv {} \;
  • find [FOLDER_NAME] -type f -name "*.tar.gz" finds every tar.gz file in a folder
  • gunzip -tv checks the integrity and outputs if the file is OK.