2 alias texclean='rm -f *.toc *.aux *.log *.cp *.fn *.tp *.vr *.pg *.ky'
3 alias clean='echo -n "Really clean this directory?";
5 if test "$yorn" = "y"; then
6 rm -f \#* *~ .*~ *.bak .*.bak *.tmp .*.tmp core a.out;
27 # Function which adds an alias to the current shell and to
28 # the ~/.bash_aliases file.
31 local name=$1 value="$2"
32 echo alias $name=\'$value\' >>~/.bash_aliases
33 eval alias $name=\'$value\'
37 # "repeat" command. Like:
44 for i in $(seq 1 "$count");
50 # Subfunction needed by `repeat'.
53 local lower upper output;
56 if [ $lower -ge $upper ]; then return; fi
57 while [ $lower -le $upper ];