私は Linux Shell Scripting の初心者です。私が知る必要があるのは、通常はコマンド ラインで次のように使用することです。
# ls /var/log
audit ConsoleKit cups maillog messages ntpstats secure-20130616 spooler-20130623 vsftpd.log-20130616
boot.log cron dmesg maillog-20130616 messages-20130616 prelink secure-20130623 spooler-20130701 vsftpd.log-20130623
... . . . ..
それで
# ls /var/aaaaaaaaaaaaaaa
ls: cannot access /var/aaaaaaaaaaaaaaa: No such file or directory
したがって、シェル スクリプトでは次のようになります。
- コマンドを実行するにはどうすればよいですか:
# ls /var/aaaaaaaaa
- 出力文字列があるかどうかを検出します
ls: cannot access
か?
注: 失敗だけを検出するかどうかを尋ねる場合があります。または出力文字列。私は両方の方法を知りたいと思っています。ありがとうございました。