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.
我遇到这样的错误:
expr: syntax error
我的脚本是:
#!/bin/bash echo `expr index "sarasara" a`
如何修复它。
$ man expr最后给出这个:
$ man expr
根据 POSIX 标准,使用字符串参数length、 substr、index或match会产生未定义的结果。在这个版本的 中 expr,这些参数被视为它们各自的字符串值。
length
substr
index
match
expr
换句话说,macOS'expr不支持index.