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.
私のbashの問題を正確に特定するにはどうすればよいですか? 時々スクリプトを実行すると、次のエラーが発生します。
download.sh: line 254: syntax error near unexpected token `}' download.sh: line 254: `}'
しかし、254行目に「}」はありません
bash の 2 行目に set -x を追加して、再度実行できます。
#!/bin/bash set -x ...... ...... ......