15 lines
85 B
Bash
Executable File
15 lines
85 B
Bash
Executable File
#!/bin/bash
|
|
|
|
DIRS=$(ls -d */)
|
|
|
|
for d in $DIRS; do
|
|
|
|
pushd $d
|
|
|
|
./apply
|
|
|
|
popd
|
|
|
|
done
|
|
|