3

我在使用 shell 脚本时遇到问题,希望您能提供帮助。我想优化以下代码的 HTML 格式:

#! /bin/sh

cat <<EOF > myfile # temporary file
#! /bin/sh

echo -e "Content-type: text/html; charset=iso-8859-1\n\n"
echo -e "<html><head>\c"
echo -e "<title></title>"
echo -e "</head>"
echo -e "<body>\c"
echo -e "<p>Text</p>"
echo -e "</body></html>"

EOF
chmod 777 myfile
mount -o bind myfile myfile # mount temporary on the original myfile
rm myfile

我删除了echo -e 和双引号。我也试过这个:

#! /bin/sh

cat <<EOF > myfile # temporary file
#! /bin/sh

echo -e '
<html>
    <head>
        <title></title>
    </head>
        <body>
            <p>Text</p>
        </body>
</html>
'

EOF
chmod 777 myfile
mount -o bind myfile myfile # mount temporary on the original myfile
rm myfile

脚本有什么问题?

注意:上面的代码是 .cfg 文件的内容,每次重新启动都会加载该文件。然后 .cfg 文件将 EOF 标记之间的内容粘贴到 myfile 中,这是一个 CGI 脚本。

这可能是问题吗?

4

4 回答 4

0

不需要 echo -e 和引号,

cat << eof > shellhtml.htm
<html>
</html>
eof

这行得通。

于 2013-07-18T23:12:52.373 回答
0

非常接近:-) 你不需要echo.

#! /bin/sh 
cat <<EOF > myfile
<html>
    <head>
    <title></title>
    </head>
        <body>
        <p>Text</p>
        </body>
</html>
EOF
于 2013-07-18T23:13:13.007 回答
0

我终于找到了解决方案:

#! /bin/sh

cat <<EOF > myfile # temporary file
#! /bin/sh

echo -e "Content-type: text/html; charset=iso-8859-1"
echo -e "
<html>
    <head>
        <title></title>
    </head>
        <body>
            <p>Text</p>
        </body>
</html>\c"

EOF

chmod 777 myfile
mount -o bind myfile myfile # mount temporary on the original myfile
rm myfile

busybox shell 没有在 vi 编辑器中正确显示粘贴的选项卡,所以我使用了 Vim 的set: noai命令。
set: noai解决了选项卡问题,但在 HTML 代码之后有这一行。
解决方案是使用\c转义字符。

如果有人有更好的答案,请随时发布。

于 2013-07-29T23:36:08.643 回答
0

将 !#/bin/sh 添加到顶部,并删除以 echo e 开头的行,以及 EOF 之前带有单引号的行。然后您的 html 将被正确传送到 myfile。

所以正确的shell脚本将是:-

#!/bin/sh
cat <<EOF > myfile
 <html>
 <head>
 <title></title>
 </head>
     <body>
     <p>Text</p>
     </body>
 </html>
EOF
于 2013-07-18T23:14:46.500 回答