Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!seismo!columbia!rutgers!sri-spam!mordor!styx!lll-lcc!ptsfa!ihnp4!twitch!hoqax!twb From: twb@hoqax.UUCP (BEATTIE) Newsgroups: comp.unix.questions Subject: Re: Korn Shell Message-ID: <729@hoqax.UUCP> Date: Tue, 17-Mar-87 10:27:04 EST Article-I.D.: hoqax.729 Posted: Tue Mar 17 10:27:04 1987 Date-Received: Thu, 19-Mar-87 01:40:54 EST References: <580@csun.UUCP> <5680@brl-smoke.ARPA> Organization: AT&T Bell Labs, Holmdel, NJ Lines: 12 Keywords: Korn shell ksh aliases parameters > In article <580@csun.UUCP> aeusesef@csun.UUCP (Sean Eric Fagan) writes: > >I tried making a > >function called cd, but it didn't work, and an alias called cd did work, but > >I was unable to pass parameters into it. Any one have any suggestions? Make an alias which invokes the function. function CD { echo "cd func" } alias cd=CD Tom.