我在這裏學習文檔在Korn Shell中的IO重定向。 我用「讀」內建來測試這些概念。 我寫了一個示例程序如下 #!/usr/bin/ksh
cat << ONE | wc -l | read word | if [ $word -eq 1 ]; then cat << TWO ; fi | wc -l | read word | if [ $word -eq 2 ]; then cat <<
我很新來砸, 我學習瞭如何使用變量是這樣的: var=$(cat << EOF
this is echoed
and this as well...
EOF
)
echo "$var"
如果上面的代碼使用variable你怎麼叫下面的方法叫什麼?這叫做使用definition? def="This should be echoed\nand this as well...\n"
我想在bash腳本運行的sqlite一系列命令: db="main.sqlite3"
db2="sub.sqlite3"
sqlite3 ${db} <<EOF
attach ${db2} as m;
select count(*) from m.details;
.exit
EOF
當連接到一個字符串,它的工作原理,但是當它是一個變量,它不會,得了 Error: near li