cwd help needed

Jean-Pierre Radley jpr at jpradley.uucp
Mon Oct 15 10:37:41 AEST 1990


In article <1990Oct6.233758.7959 at cjbsys.bdb.com> cliffb at cjbsys.bdb.com (cliff bedore) writes:
>In article <1084 at ria.ccs.uwo.ca> creider at uwocsd.uwo.ca (Chet Creider) writes:
>>Would someone help a newuser? How does one write the equivalent to
>>the familiar:
>>	alias	cd	'cd \!* ; echo $cwd'
>>
>>i.e., is there an equivalent to $cwd (csh, SCO OS)?
>
>The following works
>
>	set prompt="`pwd` : " 		# set prompt string
>	alias cd 'cd \!*;set prompt = "`pwd` : "'


Some one asked me for a fancy two-line prompt, such as:

	alias cd 'cd \!* ; set prompt="`pwd` \\\
	`tput smso``logname` \\!>`tput rmso`"'

If you really want such a thing, then speed it up:

	set SMSO = `tput smso`
	set RMSO = `tput rmso`
	set LOGNAME = `logname`
	alias cd 'cd \!* ; set prompt = "`pwd` \\\
	$SMSO$LOGNAME \\!>$RMSO"'
-- 
 Jean-Pierre Radley          HIGH-Q	     jpr at jpradley	CIS: 72160,1341



More information about the Comp.unix.xenix.sco mailing list