在Shell腳本中,可以使用!
操作符來取非。具體語法如下:
if ! condition; then
# code to be executed if the condition is false
else
# code to be executed if the condition is true
fi
在上述代碼中,!
操作符用于對condition
進行取非操作。如果condition
為true,則執行else
后面的代碼塊;如果condition
為false,則執行if
后面的代碼塊。