I use "save decoded".

Then I have timed script to run every hour. It leaves wav files from last few days. Just in case there is something to replay/test.
Works fine and does not fill HD with wavs

[saku@hamtpad ~]$ crontab -l
#* * * * * /home/saku/.local/share/WSJT-X/iswsjtx.sh > /dev/null 2>&1
* * * * *  /home/saku/rigctld_start.sh start > /dev/null 2>&1

1 * * * * /home/saku/delwav.sh  > /dev/null 2>&1



[saku@hamtpad ~]$ cat /home/saku/delwav.sh
#!/bin/sh
cd ~/.local/share/WSJT-X/save/
eval $(find *.wav -mtime +2 -type f | awk '{print "/bin/rm -f "$1}')

[saku@hamtpad ~]$


Similar can be done also for windows. This one is for linux only.
No need to touch the wsjt-x source itself.

--
Saku
OH1KH



_______________________________________________
wsjt-devel mailing list
wsjt-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wsjt-devel

Reply via email to