From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: To: 9fans@cse.psu.edu Subject: Re: [9fans] v8 shell From: rog@vitanuova.com In-Reply-To: <059601c3aa55$ed03d7e0$b9844051@insultant.net> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Date: Fri, 14 Nov 2003 17:51:04 +0000 Topicbox-Message-UUID: 898d09e2-eacc-11e9-9e20-41e7f4b1d025 > whatis & builtin were _essential_, so you could write a function like cd, so > it could use 'builtin' so you could have a function called 'cd' and it would do > what you wanted. there's a builtin command built in to bash, i discovered recently, but it gets it so wrong... i wanted to write a shell function to replace ls: $ ls() { builtin ls "$@" | cat } $ ls -bash: builtin: ls: not a shell builtin $ they don't seem to have a clue.