]> 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:

Merge branch 'master' of ssh://git.madduck.net/~/git/pub/etc/zsh
[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 _OLDPWD="$PWD"
14 builtin cd ~
15
16 rmfiles+=plugin131.trace
17 rmfiles+=minicom.log
18 rmfiles+=.cshrc
19 rmfiles+=java.log.*(N)
20 rmfiles+=unison.log
21 rmfiles+=.bzr.log
22 rmfiles+=.fonts.cache-1
23 rmfiles+=.gksu.lock
24 rmfiles+=.*.sw[mnop](N)
25 rmfiles+=.viminfo
26 rmfiles+=.bash_history
27 rmfiles+=core
28 rmfiles+=nohup.out
29 rmfiles+=typescript
30
31 typeset -la _rmfiles
32
33 for f in ${~rmfiles[@]}; do
34   [[ -f $f ]] || continue
35   _rmfiles+="$f"
36 done
37
38 unset rmfiles
39
40 if [[ -n $_rmfiles ]]; then
41   info "Removing files: ${_rmfiles[@]}..."
42   rm -f ${_rmfiles[@]}
43 fi
44
45 unset _rmfiles
46
47 builtin cd $_OLDPWD
48 unset _OLDPWD
49
50 # vim:ft=zsh