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.
こんにちは、シェル スクリプトの作成方法と使用方法を学び始めています。作成したいシェル スクリプトの 1 つは、ファイル名を要求しているユーザーからの文字列入力を受け取り、ファイルが存在するかどうかを報告するシェル スクリプトです。か否か。何をすべきかわからない。ここに私が書いたものがあります:
#!/bin/bash read string1 echo${#string1} ; grep
grep を入力した後、何をすべきかわかりません。助けてください。
grep は、ファイルの内容に含まれる文字列を探します。特定の名前のファイルが存在するかどうかをテストするだけの場合は、grep は必要ありません。
#!/bin/bash read string1 if test -e ${string1}; then echo The file ${string1} exists fi
しましょう。
[@glenn jackman の提案に従って、コメントから回答にコピー]