10 lines
106 B
Bash
10 lines
106 B
Bash
![]() |
#!/bin/bash
|
||
|
|
||
|
ossPath=$1
|
||
|
|
||
|
echo ${#ossPath}
|
||
|
if [ ${#ossPath} != 0 ]; then
|
||
|
echo "ossPath: "${ossPath}
|
||
|
fi
|
||
|
|