Add new script for metadata stripper

master
Tait Hoyem 2 years ago
parent 53e9a537a3
commit 45c431d109

@ -0,0 +1,7 @@
#!/bin/sh
$MAILDIR = "$HOME/.local/share/mail/"
cd $MAILDIR
find . -tfype f -name '.??*' -delete
find . -type f -name '*U=*' | { while read f; do mv "$f" "`echo $f | sed -e 's/,U=[0-9]*//'`"; done }
find . -type f -name '*U=*'
Loading…
Cancel
Save