nix/home/program/bash/module/Binwalk.sh

7 lines
142 B
Bash
Raw Normal View History

2024-12-18 10:54:24 +03:00
# Extract all formats with binwalk.
# Use -M for recursive extract.
# Usage: binwalke <FILES>
function binwalke() {
binwalk --dd='.*' "$@"
}