Command to list data

2003-07-04 Thread Nucking Futs
I am wondering how a shell provider running FreeBSD sets up data to be 
output with a command.  For example typing vhosts at the command prompt 
would list a bunch of ip addresses.  How would I set this up?

_
Tired of spam? Get advanced junk mail protection with MSN 8. 
http://join.msn.com/?page=features/junkmail

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Command to list data

2003-07-04 Thread Dan Nelson
In the last episode (Jul 04), Nucking Futs said:
 I am wondering how a shell provider running FreeBSD sets up data to be 
 output with a command.  For example typing vhosts at the command prompt 
 would list a bunch of ip addresses.  How would I set this up?

Shell script, most likely.

#! /bin/sh
cat /etc/mail/local-host-names

.. Or wherever you store your vhosts. 

-- 
Dan Nelson
[EMAIL PROTECTED]
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]