# yuis@DESKTOP-PS5DVT5:/mnt/c/google_drive/note$ regexp="(機種名|対応OS)"
# yuis@DESKTOP-PS5DVT5:/mnt/c/google_drive/note$ . ~/lib/input.sh
# ./everything_note.md:機種名,対応OS,録画?,価格,備考
cd /mnt/c/note
find . -type f | xargs grep -E $regexp |& fgrep -v "そのようなファイルやディレクトリはありません" |& fgrep -v "No such file or directory"
cd /mnt/c/google_drive/note
find . -type f | xargs grep -E $regexp |& fgrep -v "そのようなファイルやディレクトリはありません" |& fgrep -v "No such file or directory"
単純にcd
でディレクトリを移動してから、全文検索コマンドを実行しているだけです。
上のようなコードをファイルに保存し、regexp="(機種名|対応OS)"
のようにregexp変数に検索したい文字列を正規表現で定義してから、保存したファイルを実行します。