25 lines
291 B
Bash
Executable File
25 lines
291 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Clean up useless dotfiles
|
|
|
|
rm -rf \
|
|
.audacity-data \
|
|
.mplayer \
|
|
.w3m \
|
|
.wget-hsts \
|
|
.python_history \
|
|
.units_history \
|
|
.bash_history \
|
|
.avidemux6 \
|
|
.xsel.log \
|
|
.gnuplot_history \
|
|
.gnome \
|
|
.ansible \
|
|
.wavemonrc \
|
|
.viminfo \
|
|
.icons\
|
|
.ipython
|
|
|
|
|
|
rmdir Downloads Desktop 2>/dev/null
|