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

12 lines
198 B
Nix
Raw Normal View History

{ ... }:
{
text = ''
# Extract all formats with binwalk.
# Use -M for recursive extract.
# Usage: binwalke <FILES>
function binwalke() {
binwalk --dd='.*' "$@"
}
'';
2024-11-11 00:51:44 +03:00
}