Linux下多行數大範圍快速#註解法

寫支test.sh

#!/bin/bash

echo “start”

echo “test”

echo “test”

echo “test”

echo “test”

echo “end”

輸出如下

[root@AO753 ~]# ./test.sh
start
test
test
test
test
end

更改script內容如下

#!/bin/bash

echo “start”

: ‘

echo “test”

echo “test”

echo “test”

echo “test” ‘

echo “end”

輸出如下

[root@AO753 ~]# ./test.sh
start
end

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *