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