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