#!/bin/sh # # Copyright (c) 1983 Eric P. Allman # Copyright (c) 1988, 1993 # The Regents of the University of California. All rights reserved. # # %sccs.include.redist.sh% # # @(#)makeinfo.sh 8.3 (Berkeley) 07/23/93 # usewhoami=0 usehostname=0 for p in `echo $PATH | sed 's/:/ /g'` do if [ "x$p" = "x" ] then p="." fi if [ -f $p/whoami ] then usewhoami=1 if [ $usehostname -ne 0 ] then break; fi fi if [ -f $p/hostname ] then usehostname=1 if [ $usewhoami -ne 0 ] then break; fi fi done if [ $usewhoami -ne 0 ] then user=`whoami` else user=$LOGNAME fi if [ $usehostname -ne 0 ] then host=`hostname` else host=`uname -n` fi echo '#####' built by $user on `date` echo '#####' in `pwd` on $host