gpt4 book ai didi

bash - 如何测试命令是否为 shell 保留字?

转载 作者:行者123 更新时间:2023-11-29 09:37:59 24 4
gpt4 key购买 nike

我正在编写一个 bash 脚本,我想验证一个字符串是否是 shell 保留字(如 ifforalias 等...)。

我该怎么做?

最佳答案

#!/bin/bash

string="$1"

if [[ $(type "$string" 2>&1) == "$string is a shell"* ]]; then
echo "Keyword $string is reserved by shell"
fi

关于bash - 如何测试命令是否为 shell 保留字?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30847776/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com