Get rid of files where we don't own the copyright or license is unclear
[zsh-lovers.git] / zsh_people / strcat / zlogin
diff --git a/zsh_people/strcat/zlogin b/zsh_people/strcat/zlogin
deleted file mode 100644 (file)
index 7cfc8bd..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-# $Id: .zlogin,v 1.1 2004/06/10 09:59:46 dope Exp dope $
-#
-# .zlogin is sourced in login shells.  It should contain commands that
-# should be executed only in login shells.  It should be used to run a
-# series of external commands (fortune, msgs, etc).
-#
-# Check incoming ftp files.
-if [[ $(uname -n) = painless ]]
-then
-       INCOMING=/home/ftp/pub/incoming
-       if [[ -d ${INCOMING} ]]
-       then
-               pushd ${INCOMING}
-               newfiles=( )
-               [[ -a .timestamp ]] || touch .timestamp
-               setopt nullglob
-               for file in ^.timestamp
-                       [[ $file -nt .timestamp ]] && newfiles=( $newfiles $file )
-                       if [[ -n $newfiles ]]
-                       then
-                               echo "New files in ${INCOMING}:"
-                               echo "  "$newfiles
-                               echo ""
-                       fi
-                       touch .timestamp
-                       popd
-               fi
-       fi
-
-# Check for TODO-entry
-if [[ -e ~/TODO ]]
-then
-       echo "Note: New TODO - entry!"
-       echo
-       cat ~/TODO
-       echo
-fi