sed: -e expression #1, char 5: unterminated `s' command ― 2019年07月13日 10時44分38秒
最終的に問題があるのはこれだった。
% echo | sed -e 's/[//'
sed: -e expression #1, char 5: unterminated `s' command
他のバージョンや他のシステムで試したところ、以下の様なエラーメッセージを出すようだ。
% echo | /bin/sed -e 's/[//'
sed: command garbled: s/[//
% echo x | /bin/sed -e 's/[//'
sed: Function s/[// cannot be parsed.
最近のコメント