我喜欢为单个命令设置变量的方式,例如:
LANG=fr_FR.utf8 df -h
是否可以使用shopt -s
命令或其他方法以相同方式为单个命令设置 shell 选项(例如 nullglob 或 extglob)?
答案1
根据您的使用情况,使用子 shell:
(shopt -s nullglob; foo)
我喜欢为单个命令设置变量的方式,例如:
LANG=fr_FR.utf8 df -h
是否可以使用shopt -s
命令或其他方法以相同方式为单个命令设置 shell 选项(例如 nullglob 或 extglob)?
根据您的使用情况,使用子 shell:
(shopt -s nullglob; foo)