我目前使用我们用来移动数据的 shell 脚本,它使用以下语法运行:
./script.sh <env> <y|n> <file> <file> <file> <file> <file> <file>
$1 sets a variable for production/test
$2 sets a variable whether we perform a tarball of the destination folder before copying
$3 - $# is a space delimited list of files to move (there has to be a minimum of one file, no maximum)
我需要将此脚本传递给其他用户,但不要相信他可以通过 shell 访问该框。
我想做的是创建一个包含三个字段的网页。字段一是环境的单选按钮,将作为 $1 传递。字段二是是/否的单选按钮,我想将其传递为 2 美元。字段 3 是一个多选框,我想从静态文本文件或(最好)通过在源目录上运行“ls”来填充它 - 这将是 $3+
这可能吗?我可以在服务器上运行 Apache,这样 PHP 甚至 CGI 都可以使用。
谢谢!