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

11 lines
183 B
Nix
Raw Normal View History

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