Hi Steve,

On Fri, 25 May 2018 17:13:53 -0400
Steven Rostedt <[email protected]> wrote:

> On Fri, 25 May 2018 17:12:29 -0400
> Steven Rostedt <[email protected]> wrote:
> 
>  
> > #!/bin/sh
> 
> Hmm, I think I need to make this #!/bin/bash
> 
> > test_trace() {
> >     file=$1
> >     x=$2
> > 
> >     cat $file | while read line; do
> >     if [ "$line" != "${line/\#/}" ]; then
> >         continue
> >     fi
> >     echo "testing $line for >$x<"
> >     if [ "$line" == "${line/>$x</}" ]; then
> 
> The ${line/>$x</} is unique to bash I believe.

Hmm, could you try to use only posix-shell based test ?
Since I would like to keep this can run on small 
environment, like busybox, etc.

Thank you,

> 
> -- Steve
> 
> >         fail "$line does not have >$x< in it"
> >     fi
> >     let x=$x+2
> >     done
> > }
> > 


-- 
Masami Hiramatsu <[email protected]>

Reply via email to