Re: sed from a shell script - invalid command code

2003-12-11 Thread Malcolm Kay
On Thu, 11 Dec 2003 01:10, Jez Hancock wrote: #!/bin/sh sed=/usr/bin/sed passwd_file=/etc/passwd ignore_users=root|toor|daemon|operator|bin|tty|kmem|games|news|man|smmsp|b ind|uucp|xten|pop|nobody|mysql|www|sshd|ftp|cyrus cmd=$sed -E -e '/^(#|$ignore_users)/d' -e 's/:.*//' $passwd_file

Re: sed from a shell script - invalid command code

2003-12-10 Thread Jez Hancock
On Wed, Dec 10, 2003 at 02:40:58PM +, Jez Hancock wrote: I'm trying to get the following Bourne shell script to output a list of all users on the server with the exception of those listed in the $ignore_users variable: -snip- #!/bin/sh sed=/usr/bin/sed passwd_file=/etc/passwd