bug-bash
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: How to create bash-pattern to exclude a matching param in param expa


From: Greg Wooledge
Subject: Re: How to create bash-pattern to exclude a matching param in param expansion&matching?
Date: Wed, 30 Oct 2013 07:49:40 -0400
User-agent: Mutt/1.4.2.3i

On Wed, Oct 30, 2013 at 08:01:02AM +0000, Peggy Russell wrote:
> A variation:
>  
> shopt -s nullglob
> for f in ${1:-.}/*; do
>   if [[ "${f}" != *-IGN-* ]];
>     then printf -- '%s\n' "${f}"
>   fi
> done

You missed one set of quotes:

  for f in "${1:-.}"/*; do



reply via email to

[Prev in Thread] Current Thread [Next in Thread]