11 lines
183 B
Nix
11 lines
183 B
Nix
|
{ ... }: {
|
||
|
text = ''
|
||
|
# Extract all formats with binwalk.
|
||
|
# Use -M for recursive extract.
|
||
|
# Usage: binwalke <FILES>
|
||
|
function binwalke() {
|
||
|
binwalk --dd='.*' "$@"
|
||
|
}
|
||
|
'';
|
||
|
}
|