Path: utzoo!utgpu!jarvis.csri.toronto.edu!rutgers!tut.cis.ohio-state.edu!AI.MIT.EDU!roland From: roland@AI.MIT.EDU (Roland McGrath) Newsgroups: gnu.bash.bug Subject: evaluation order wrong? Message-ID: <8906270547.AA01124@hobbes.ai.mit.edu> Date: 26 Jun 89 15:47:14 GMT Sender: daemon@tut.cis.ohio-state.edu Distribution: gnu Organization: GNUs Not Usenet Lines: 16 The evaluation order of ~ vs $ is not like csh's. Maybe this is wrong? For example, in bash: foo='~/bin' echo $foo ~/bin echo ~/bin /gp/fsf/roland/bin In csh: set foo='~/bin' echo $foo /gp/fsf/roland/bin