mirror of
https://github.com/watchexec/watchexec.git
synced 2024-11-16 09:08:37 +01:00
8 lines
123 B
Bash
8 lines
123 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -euxo pipefail
|
||
|
|
||
|
watchexec=${WATCHEXEC_BIN:-watchexec}
|
||
|
|
||
|
$watchexec -1 -n echo 'foo bar' | grep 'foo bar'
|