Re: [cNFS-Users] Question from a newbie
Brought to you by:
warnes
From: Bernd S. <ber...@we...> - 2003-06-09 19:24:20
|
On Monday 09 June 2003 16:19, Warnes, Gregory R wrote: > Most unix shells convert the sequence $$ to the process ID of the shell. > To create a file with these characters from the shell, you need to excape > the dollar sign characters, like so: > > touch filename\$\$CLIENT\$\$ > > The double dollar-sign character was explicitly chosen so that it would be > very unlikely to appear in any normal file name... > > -Greg Hi, another way is to use '...', so: touch 'filename$$CLIENT$$' Bernd |