Skip to content

Instantly share code, notes, and snippets.

@tebriel
Last active December 25, 2018 15:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tebriel/6ed1f333c979ef62ef475d97230b3b27 to your computer and use it in GitHub Desktop.
Save tebriel/6ed1f333c979ef62ef475d97230b3b27 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
set -euo pipefail
FILENAME=${1?"Must specify filename as first arg"}
if od -A x -t x1 -v "$FILENAME" | grep -Eqe " 0[1-8bcef]| 1[0-9a-f]"; then
echo "$FILENAME: data"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment