1. 程式人生 > >shell 判斷一個字符串是否為空

shell 判斷一個字符串是否為空

read bsp 執行 ring else span name 是否為空 bash

test.sh

#!/bin/bash
echo "enter the string:"
read filename
if test $filename ; then
echo "it‘s not zero"
else
echo "it‘s zero"
fi

執行

sudo chmod +x test.sh
./test.sh

輸出

enter the string:

its zero

執行

./test.sh

輸出

enter the string:
kk
its not zero

shell 判斷一個字符串是否為空