TGTGInsighttelegram intelligenceLIVE / telegram public index
← Welcome to the Black Parade
Welcome to the Black Parade avatar

TGINSIGHT POST

Post #5

@TheB1ackParade

Welcome to the Black Parade

Views206Post view count
PostedJan 2001/20/2020, 04:04 PM
Post content

Post content

发现 sh 居然不支持 brace expansion: mv ./{a,b} .. 习惯性地执行 sh script.sh结果因为 sh 无法解释 brace expansion 导致失败, 因为没有 set -e导致这个错误被 skip, 我没认真看输出甚至还以为是 dpkg 又挂了… 这也意味着 brace expansion 居然不是 POSIX Shell 标准: https://pubs.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html 这大概是 bash_supported.set() - sh_supported.set() 里最简单的语法之一, 其他的记得貌似 process substitution 也是, 不过都比较高级了.