次のように、他のスクリプト言語を呼び出すシェル スクリプトをよく使用します。
#!/bin/bash
cat somefile|awk '
BEGIN
{
#This line is not auto-indented and is colored as a string constant.
...
}
{
#Same with this line.
...
}'
echo "More Bash code here."
...
Emacsにawk文字列を単なる文字列定数ではなくawkプログラムとして認識させる方法はありますか?