]> git.madduck.net Git - etc/zsh.git/blob - .zsh/zshrc/90_cleanfiles

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

do not remove .xsession-errors
[etc/zsh.git] / .zsh / zshrc / 90_cleanfiles
1 # zlogout/90_cleanfiles
2 #
3 # remove files we never want to keep around
4 #
5 # Copyright © 1994–2008 martin f. krafft <madduck@madduck.net>
6 # Released under the terms of the Artistic Licence 2.0
7 #
8 # Source repository: http://git.madduck.net/v/etc/zsh.git
9 #
10
11 typeset -la rmfiles
12
13 cd ~
14
15 rmfiles+=plugin131.trace
16 rmfiles+=minicom.log
17 rmfiles+=.cshrc
18 rmfiles+=java.log.*
19 rmfiles+=unison.log
20 rmfiles+=.bzr.log
21 rmfiles+=.fonts.cache-1
22 rmfiles+=.gksu.lock
23 rmfiles+=.*.sw[mnop]
24 rmfiles+=.viminfo
25 rmfiles+=.bash_history
26 rmfiles+=core
27 rmfiles+=nohup.out
28
29 typeset -la _rmfiles
30
31 for f in ${~rmfiles[@]}; do
32   [[ -f $f ]] || continue
33   _rmfiles+="$f"
34 done
35
36 unset rmfiles
37
38 if [[ -n $_rmfiles ]]; then
39   info "Removing files: ${_rmfiles[@]}..."
40   rm -f ${_rmfiles[@]}
41 fi
42
43 unset _rmfiles
44
45 # vim:ft=zsh