検索結果をファイルに保存する
書式
find . -name "*.jpg" > result.txt
説明
検索結果を保存するには>記号を使って保存するファイル名(出力先)を指定します。
サンプルコード
#!/bin/bash
find . -name "*.jpg" > result.txt