Skip to content

Instantly share code, notes, and snippets.

@cmcginty
cmcginty / zip_cookbook.md
Last active October 5, 2020 03:14
Zip and 7z Cookbook

List all ZIP files and their uncompressed size in a dir

find "$(pwd)" -name *.zip | while read -r; do 
  echo -n "$REPLY\t"; 
  unzip -l $REPLY | tail -1 | awk '{print $1}'; 
done

List all 7z files and their uncompressed size in a dir

@cmcginty
cmcginty / badblocks.md
Last active August 5, 2021 04:45
Hard Drive Integrity Tests with Badblocks Command

Before installing a new hard drive, use the following steps to detect any IMF issues.

  1. Install badblocks tool.
brew install e2fsprogs
brew ln --force e2fsprogs