2024-09-08 23:53:42 -04:00

15 lines
85 B
Bash
Executable File

#!/bin/bash
DIRS=$(ls -d */)
for d in $DIRS; do
pushd $d
./apply
popd
done