Path: utzoo!utgpu!news-server.csri.toronto.edu!rutgers!tut.cis.ohio-state.edu!purdue!haven!umbc3!rostamia From: rostamia@umbc3.UMBC.EDU (Rouben Rostamian) Newsgroups: comp.unix.questions Subject: Why is there an 'f' command? Message-ID: <3543@umbc3.UMBC.EDU> Date: 30 Jun 90 03:01:15 GMT Reply-To: rostamia@umbc3.umbc.edu (Rouben Rostamian) Organization: University of Maryland, Baltimore County Lines: 11 On all unix systems I know of, the command 'f' is a synonym for 'finger'. For instance, on ultrix: % ls -il `which finger` 4241 -rwxr-xr-x 2 root 55296 May 2 1989 /usr/ucb/finger % ls -il `which f` 4241 -rwxr-xr-x 2 root 55296 May 2 1989 /usr/ucb/f Note that both 'f' and 'finger' refer to the same file with inode 4241. The man page does not explain the reason for existence of 'f'. Any ideas? --