15 lines
179 B
Plaintext
15 lines
179 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# Clean up useless dotfiles
|
||
|
|
||
|
rm -rf \
|
||
|
.audacity-data \
|
||
|
.mplayer \
|
||
|
.w3m \
|
||
|
.wget-hsts \
|
||
|
.python_history \
|
||
|
.units_history \
|
||
|
.xsel.log
|
||
|
|
||
|
rmdir Downloads Desktop 2>/dev/null
|