mirror of
https://github.com/watchexec/watchexec.git
synced 2024-11-16 09:08:37 +01:00
477d59d319
Co-authored-by: Félix Saparelli <felix@passcod.name> Co-authored-by: github-actions <github-actions@github.com>
7 lines
123 B
Bash
Executable file
7 lines
123 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -euxo pipefail
|
|
|
|
watchexec=${WATCHEXEC_BIN:-watchexec}
|
|
|
|
$watchexec -1 --env FOO=BAR echo '$FOO' | grep BAR
|