我有一个bash cgi脚本,它运行一些命令和可执行文件,最后在新目录中创建一个结果zip文件。 这是bashcgi.sh文件代码:
#!/bin/sh
echo "Content-type: text/html"
echo '<!DOCTYPE html>'
echo '<html lang="en">'
echo ' <head> '
echo ' <h1><a href="/test/index.html">Test</a></h1>'
echo ' </head>
echo '<body>'
**my script and variables here**
echo 'Download the output files: '
echo '<a href="/var/htdocs/test/$variableOutput/output.zip">click here to download result</a><br> '
echo '</body>
echo '</html>
以上脚本文件位于&#34; / var / cgi-bin /&#34;并且有很多变量并在var / htdocs / test /中创建一个输出文件夹,文件夹名称会根据用户输入而改变(在之前的php中,输入名称将保存为文本文件)
有没有办法在href中提供该变量文件夹的链接?
也就是说,当用户点击链接时,应将其重定向到名称为variable folder的链接。如果$variableOutput = testresult1
他们应该重定向到/var/htdocs/test/testresult1/output.zip
。
答案 0 :(得分:0)
echo "<a href=/var/htdocs/test/$variableOutput/output.zip>click here to download result</a><br>"