work related

June 02, 2008

cleanup

Well I've cleaned up sakaiview a bit so the graphs are more intuitive and display more data. Also cleaned up some verbiage on the left side info that is visible.

During this process I finished the email setting so now the utility will email the days results to the address indicated. This process caused me to re-verify my sendmail setup on sakdev.cc.iup.edu which has been in the stop state for quite a while.

Boy did I find quite a mess.. :-) And an annoyance before I remembered about xargs.

[root@ ]# ls /var/spool/clientmqueue/ | wc -l
36226
[root@ ]# rm -f /var/spool/clientmqueue/*fm*
-bash: /bin/rm: Argument list too long
[root@ ]# find /var/spool/clientmqueue/ -name *fm* -print0 | xargs -0 rm -f
[root@ ]# ls /var/spool/clientmqueue/ | wc -l
0

Ok now that thats cleaned up ..