カレント直下のサブディレクトリ内で同一コマンドを実行
Nid: 1007
各サブディレクトリでpwdコマンドを実行する例
$ find "$PWD" -mindepth 1 -maxdepth 1 -type d | while read -r line; do cd "$line" && pwd; done;
全サブディレクトリに再帰的にコマンドを実行したい場合は、maxdepthの指定を外せばOK。
各サブディレクトリでpwdコマンドを実行する例
$ find "$PWD" -mindepth 1 -maxdepth 1 -type d | while read -r line; do cd "$line" && pwd; done;
全サブディレクトリに再帰的にコマンドを実行したい場合は、maxdepthの指定を外せばOK。