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 スクリプトを初めて使用します。単純なプログラムが機能していません。構文エラーだと思います。
#!/bin/bash #example1.sh read Age if ["$Age" -lt "18"]; then echo "You must go to school" fi
1 を入力すると、[1: コマンドが見つかりません] と表示されます
スペースが必要です:
if [ "$Age" -lt "18" ]; then
(要約: Bash の構文規則は恐ろしいものです。)