bat files are converted to sh files, and bugs are fixed.
authorShingo W. Kagami
Fri, 22 Jan 2010 12:17:18 +0900
changeset 23473a6fcda66
parent 1 577963cc46fc
child 3 cce8365a9d50
bat files are converted to sh files, and bugs are fixed.
net/net_dhcp.bat
net/net_dhcp.sh
net/net_ic.bat
net/net_ic.sh
     1.1 --- a/net/net_dhcp.bat	Fri Jan 22 01:01:29 2010 +0900
     1.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.3 @@ -1,4 +0,0 @@
     1.4 -@echo off
     1.5 -netsh interface ip set address "ローカル エリア接続" dhcp
     1.6 -netsh interface ip set dns "ローカル エリア接続" dhcp
     1.7 -netsh interface ip set wins "ローカル エリア接続" dhcp
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/net/net_dhcp.sh	Fri Jan 22 12:17:18 2010 +0900
     2.3 @@ -0,0 +1,9 @@
     2.4 +#!/bin/sh
     2.5 +
     2.6 +conn="ローカル エリア接続"
     2.7 +if [ "X$1" = "Xwireless" ]; then
     2.8 +    conn="ワイヤレス ネットワーク接続"
     2.9 +fi
    2.10 +
    2.11 +netsh interface ip set address "$conn" dhcp
    2.12 +netsh interface ip set dns "$conn" dhcp
     3.1 --- a/net/net_ic.bat	Fri Jan 22 01:01:29 2010 +0900
     3.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.3 @@ -1,4 +0,0 @@
     3.4 -@echo off
     3.5 -netsh interface ip set address "ローカル エリア接続" static 10.240.10.207 255.255.255.0 10.240.10.1 1
     3.6 -netsh interface ip set dns "ローカル エリア接続" static 130.34.54.2
     3.7 -netsh interface ip add dns "ローカル エリア接続" 130.34.232.25
     4.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     4.2 +++ b/net/net_ic.sh	Fri Jan 22 12:17:18 2010 +0900
     4.3 @@ -0,0 +1,10 @@
     4.4 +#!/bin/sh
     4.5 +
     4.6 +conn="ローカル エリア接続"
     4.7 +if [ "X$1" = "Xwireless" ]; then
     4.8 +    conn="ワイヤレス ネットワーク接続"
     4.9 +fi
    4.10 +
    4.11 +netsh interface ip set address "$conn" static 10.240.10.207 255.255.255.0 10.240.10.1 1
    4.12 +netsh interface ip set dns "$conn" static 130.34.54.2
    4.13 +netsh interface ip add dns "$conn" 130.34.232.25