![]() |
2010-03-11
, 16:55
|
|
Posts: 702 |
Thanked: 334 times |
Joined on Feb 2010
@ Israel.
|
#12
|
The point is, look at the difference between that and your code. The point isn't "do you have bash on your N900". I don't either.
Nokia-N900-02-8:/etc/network# vi detectUsb.test.sh #!/bin/sh my="abcd" if [[ $my = *bc* ]] then echo "Ok" else echo "Not ok" fi ~ ~ Nokia-N900-02-8:/etc/network# ./detectUsb.test.sh Not ok Nokia-N900-02-8:/etc/network#
![]() |
2010-03-11
, 16:56
|
|
Posts: 702 |
Thanked: 334 times |
Joined on Feb 2010
@ Israel.
|
#13
|
![]() |
2010-03-11
, 17:24
|
Posts: 17 |
Thanked: 4 times |
Joined on Mar 2010
@ Germany
|
#14
|
![]() |
2010-03-11
, 17:32
|
Posts: 236 |
Thanked: 223 times |
Joined on Oct 2009
@ NE UK
|
#15
|
#!/bin/sh
my="abcd"
his=`echo "$my" | grep 'bc'`
if [[ $my == $his ]]
then
echo "Ok"
else
echo "Not ok"
fi
![]() |
2010-03-11
, 17:34
|
|
Posts: 702 |
Thanked: 334 times |
Joined on Feb 2010
@ Israel.
|
#16
|
Yep, * has its wildcard characteristic only by certain interpreters. Bash interprets it as gobuki described, as long as it's actually interpreted by bash (i.e. not escaped e.g. by \ or ''). Compare
echo *b*
and
echo "*b*"
in bash with some file with b in its name in the same directory.
Thus, fiddeling with * with some tools like
find ... -regex ... -exec ...
can be quite tricky in escaping "enough" to avoid bash interpreting it in the first step but have find interpret it for -regex but not for -exec which shall pass it to the next level of bash.........;°))
For sed and numerous other tools * is the "any number of" operator used in regular expressions ( ab*c).
Test (or the short form [...]) does not interpret or compare any regular expressions, if using = (single = is the "official" documented version but == works, too) but rather compares the strings literally.
If you want some regex functionality, try this:
my="abcd"
if [ `echo $my | grep bc` ]
then
echo "Ok"
else
echo "Not ok"
fi
Good luck!
Nokia-N900-02-8:/etc/network# vi detectUsb.sh #!/bin/sh my=`/sbin/ifconfig` if [ `echo $my | grep RUNNING` ] then echo "Ok" else echo "Not ok" fi Nokia-N900-02-8:/etc/network# ./detectUsb.sh sh: Link: unknown operand Not ok
![]() |
2010-03-11
, 17:47
|
Posts: 17 |
Thanked: 4 times |
Joined on Mar 2010
@ Germany
|
#17
|
![]() |
2010-03-11
, 17:53
|
|
Posts: 60 |
Thanked: 46 times |
Joined on Jan 2010
@ Europe
|
#18
|
![]() |
2010-03-11
, 17:55
|
Posts: 17 |
Thanked: 4 times |
Joined on Mar 2010
@ Germany
|
#19
|
![]() |
2010-03-11
, 18:04
|
|
Posts: 60 |
Thanked: 46 times |
Joined on Jan 2010
@ Europe
|
#20
|
Thank you very much CowboyFromHell,
The example you posted works well, but when I tried to adapt it a bit to my needs, I have an odd error :
Could you help me out on this one?Code:Nokia-N900-02-8:/etc/network# vi detectUsb.sh #!/bin/sh my=`/sbin/ifconfig` if [ `echo $my | grep RUNNING` ] then echo "Ok" else echo "Not ok" fi Nokia-N900-02-8:/etc/network# ./detectUsb.sh sh: Link: unknown operand Not ok
I am a big bash / sh noob.
My Maemo5 projects:
mSpede - Speed testing game | Them Bloody Ducks - 2D duck hunting game | Maetronome - A simple metronome app | CuteMPC - MPD client