]> git.donarmstrong.com Git - bin.git/blob - ham_report
add reset usb bus command
[bin.git] / ham_report
1 #!/bin/bash
2
3 # these are for spamc
4 HAM_REPORT="spamc --learntype=ham"
5
6 for file in "$@"; do
7     $HAM_REPORT < "$file" >/dev/null 2>&1;
8 done
9