mirror of
https://github.com/leahneukirchen/mblaze
synced 2024-11-11 13:10:32 +00:00
10 lines
287 B
Plaintext
10 lines
287 B
Plaintext
|
#!/bin/sh
|
||
|
# mhasatt [RANGE...] - print mails with real attachments
|
||
|
|
||
|
mshow -t "${@:-:}" | awk '
|
||
|
/^[^ 0-9]/ && /\// { file = $0 }
|
||
|
/^.*[0-9]*: (application\/pkcs7-signature)/ { next }
|
||
|
/^.*[0-9]*: (application|image|video)\// || /^.*[0-9]*:.*name=/
|
||
|
{ if (file) print file; file = 0 }
|
||
|
'
|