Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 23 Nov 2004 01:25:51 +0530
From:      Shantanoo Mahajan <shantanoo@gmail.com>
To:        cape canaveral <somniosus@gmail.com>
Cc:        freebsd-questions@freebsd.org
Subject:   Re: Job Control
Message-ID:  <20041122195551.GB951@dhumketu.homeunix.net>
In-Reply-To: <f2f44cff041122030715498c50@mail.gmail.com>
References:  <f2f44cff041122030715498c50@mail.gmail.com>

next in thread | previous in thread | raw e-mail | index | archive | help
+++ cape canaveral [freebsd] [22-11-04 03:07 -0800]:
| Depends on your shell, or version of cd I suppose.  
| 
| bash-3.00$ ls -la | grep test
| drwxr-xr-x  2 aaron  wheel   512 Nov 22 05:15 test
| -rw-r--r--  1 aaron  wheel    22 Nov 22 05:22 test1
| bash-3.00$ cd t*
| bash-3.00$ pwd
| /usr/home/aaron/test
| 
| But if I try and run the same command in csh I get:
| 
| $ cd t*
| cd: too many arguments
| 

$ cd t*
is equivalent to
$ cd test test1
which says
cd: too many argumets
as you can cd to only one directory at a time.

Regards,
Shantanoo



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20041122195551.GB951>