|
2009-01-23
, 16:27
|
|
Posts: 4,274 |
Thanked: 5,358 times |
Joined on Sep 2007
@ Looking at y'all and sighing
|
#2
|
The Following User Says Thank You to qwerty12 For This Useful Post: | ||
|
2009-01-23
, 16:32
|
Posts: 6 |
Thanked: 0 times |
Joined on Jan 2008
|
#3
|
|
2009-01-23
, 16:49
|
Posts: 1,224 |
Thanked: 1,763 times |
Joined on Jul 2007
|
#4
|
The Following User Says Thank You to Matan For This Useful Post: | ||
|
2009-01-23
, 20:00
|
Posts: 37 |
Thanked: 9 times |
Joined on Nov 2008
|
#5
|
|
2009-01-25
, 20:16
|
Posts: 12 |
Thanked: 10 times |
Joined on Jan 2008
@ Patra, Greece
|
#6
|
|
2009-04-23
, 12:06
|
Posts: 35 |
Thanked: 13 times |
Joined on Oct 2008
|
#7
|
#!/bin/sh ssid=`iwgetid -s` if [ -z $ssid ]; then exit fi if [ $ssid == "my_network_ssid" ]; then list=`ls /home/user/MyDocs/scripts/up_*.sh` for script in $list do /home/user/MyDocs/scripts/$script done fi
#!/bin/sh ssid=`iwgetid -s` if [ -z $ssid ]; then exit fi if [ $ssid == "my_network_ssid" ]; then list=`ls /home/user/MyDocs/scripts/down_*.sh` for script in $list do /home/user/MyDocs/scripts/$script done fi
The Following 2 Users Say Thank You to purg For This Useful Post: | ||
I'm at a university where they require us to login every time we connect to the wifi. I was wondering if anyone knows how to get Maemo 2008 to run a script after connecting to a network. If I can get it to do this, I can just script the login process. Does anyone have any ideas?
Thanks in advance,
Alex Lowe