Bluehost.com Web Hosting $6.95

Re: pfile start script (Solaris)

This is a discussion on Re: pfile start script (Solaris) within the IPFilter forums, part of the System Security and Security Related category; --On Saturday, July 03, 2004 7:13 PM +1000 Darren Reed <darrenr@reed.wattle.id.au> wrote: > ...


Go Back   Usenet Forums > System Security and Security Related > IPFilter

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 07-03-2004
Carson Gaspar
 
Posts: n/a
Default Re: pfile start script (Solaris)

--On Saturday, July 03, 2004 7:13 PM +1000 Darren Reed
<darrenr@reed.wattle.id.au> wrote:

> I think using the pattern 'hostname.*[!:][0-9]' is better to only
> match real interface names.


Ummm... no

carson:gandalf 0 $ touch hostname.foo0:100 hostname.foo0

carson:gandalf 0 $ ls hostname.*[!:][0-9]
hostname.foo0
hostname.foo0:100

You can't do what you want using only normal globs. You can do it with
extglobs (shopt -s extglob in bash):

carson:gandalf 0 $ ls hostname.+([!:])
hostname.foo0

Or you can do it in (POSIX) shell:

carson:gandalf 0 $ OIFS="${IFS}" IFS="${IFS}:"; ls hostname.* | while read
intf alias; do if [ -z "${alias}" ]; then echo $intf; fi; done;
IFS="${OIFS}"
hostname.foo0

--
Carson


Reply With Quote
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On




All times are GMT +1. The time now is 06:14 PM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.0.0