摘要:
$ cat bin/es-docker #!/bin/bash declare -a es_opts while IFS='=' read -r envvar_key envvar_value do # Elasticsearch env vars need to have at least two 阅读全文
摘要:
Shell 中的set --用法 set 命令为 shell 设定参数变量。许多命令的输出是以空格分隔的值,如果要使用其中的某个数据域,使用 set 非常有效。 #!/bin/shecho the date is $(date)set $(date)echo the month is $2输出:th 阅读全文