View Single Post
Posts: 306 | Thanked: 566 times | Joined on Jan 2010 @ Romania
#98
Originally Posted by bakuur View Post
there is something i dont get...
what does this mean?
Code:
[0-9]|1[0-9])color="red";;
[2-3][0-9])color="purple";;
[4-5][0-9])color="yellow";;
[6-7][0-9])color="bblue";;
*)color="white";;
[0-9] mean first char 0 ,..., 9
| mean OR
1[0-9] mean 10, ...., 19
[2-3][0-9] mean first char 2 or 3 and second char any from 0,1,2,...,9
* = any string

another functional case choices could be:

[0-9]|1*)color="red";;
[2-3]*)color="purple";; /* mean any string starting with "2" or "3" */
[4-5]*)color="yellow";;
[6-7]*)color="bblue";;
*)color="white";;



http://docstore.mik.ua/orelly/unix/upt/ch44_05.htm
http://docstore.mik.ua/orelly/unix/upt/ch44_06.htm

my last variant of 5 color script
Code:
s1="com.nokia.mce /com/nokia/mce/request com.nokia.mce.request.req_led_pattern_"
s3="activate string:Pattern"
case `lshal|grep percentage|tr -s " "|cut -d " " -f 4|sort -n|head -1` in
[0-9]|1*)color=red;;
[2-3]*)color=purple;;
[4-5]*)color=yellow;;
[6-7]*)color=bblue;;
*)color=white;;esac;
for somecolor in white bblue yellow purple red; do
[ "$color" = "$somecolor" ] && s2="" || s2="de"
todo="$s1$s2$s3$somecolor"
dbus-send --system --type=method_call --dest=$todo
done
exit

Last edited by blue_led; 2010-11-15 at 21:52.
 

The Following User Says Thank You to blue_led For This Useful Post: