wmtools/compile_urrl.sh
2022-07-17 20:04:49 +01:00

17 lines
326 B
Bash
Executable file

#!/bin/bash
for dir in ./*; do
if [ -d $dir ]; then
if [[ $dir == "./" ]]; then
continue
fi
cd $dir
f=$(echo $dir | sed 's/\.\///')
nimble install -y
if [[ $1 == "install" ]]; then
sudo cp -v $f /usr/local/bin/$f
fi
cd ../
fi
done