shell script if test的相關文章
shell script if test的相關公司資訊
shell script if test的相關商品

If..else..fi - Linux Shell Scripting Tutorial - A Beginner's handbook
瀏覽:474
日期:2025-04-29
Number Testing Script Create a shell script called testnum.sh: #!/bin/bash read-p "Enter number : "n if test $n-ge 0 then echo " $n is positive number." else echo " $n number is negative number." fi Save and close the file. Run it as follows: chmod +x tes...看更多