Massive/watch-lint.sh

10 lines
154 B
Bash
Executable File

#!/bin/sh
ls *.ts* | entr yarn lint | tee >(
while read ln; do
if echo "${ln}" | grep -q "error"; then
notify-send "${ln}"
fi
done
)