📅  最后修改于: 2022-03-11 14:51:49.751000             🧑  作者: Mango
代码示例1
#!/bin/bash
# example of using arguments to a script
echo "arg 1: $1"
echo "arg 2: $2"
echo "Total number of arguments is $#"