5 lines
52 B
Bash
5 lines
52 B
Bash
#!/bin/bash
|
|
if [ ! $1 ]
|
|
then
|
|
echo "值为空"
|
|
fi |
#!/bin/bash
|
|
if [ ! $1 ]
|
|
then
|
|
echo "值为空"
|
|
fi |