Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我想运行一个 bash 脚本,终端中是否有一个命令来指定我的脚本要求的值而不是使用读取?
例如,在我键入 bash script1.sh 时,我可以以某种方式键入要传递给脚本的值还是必须首先执行它。
像 bash script1.sh 3 4
要访问 bash 脚本的命令行参数,您可以使用$@数组以及$0, $1, ...,$N值。
$@
$0
$1
$N
例如:
#!/usr/bin/bash echo "First argument is $1" echo "Second argument is $2"