You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
192 B
13 lines
192 B
1 month ago
|
#!/bin/sh
|
||
|
|
||
|
# 换行符做分隔符
|
||
|
IFS=$'\n'
|
||
|
|
||
|
# 读取文件每一行
|
||
|
for i in `cat $1`
|
||
|
do
|
||
|
#./gmcmd_game.sh fakepay $i -t $2
|
||
|
#sleep 2
|
||
|
echo "./gmcmd_game.sh fakepay $i -t $2"
|
||
|
done
|