代码简单,确实很实用。
#!/bin/sh
function testParams(){
for i in $@;
do
echo $i
done
}
testParams xxx yyy zzz
代码简单,确实很实用。
#!/bin/sh
function testParams(){
for i in $@;
do
echo $i
done
}
testParams xxx yyy zzz