~skss/usu/misc

1
2
3
4
5
6
7
8
9
10
#!/bin/sh -e
if [ -f /usr/share/fonts/truetype/custom/Tahoma.TTF ]; then
    rm -r /usr/share/fonts/truetype/custom/Tahoma.TTF
fi
if [ -f /usr/share/fonts/truetype/custom/Tahomabd.TTF ]; then
    rm -r /usr/share/fonts/truetype/custom/Tahomabd.TTF
fi
exit 0