We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
find path_to_my_project -type f| entr -r path_to_nidium/nidium path_to_my_project/my_app.nml
fswatch.sh
chmod +x fswatch.sh
./fswatch.sh /directory/to/watch
#!/usr/bin/env bash ABSOLUTE_PATH="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)/$(basename "${BASH_SOURCE[0]}")" if [ "$#" -eq 0 ]; then echo "Usage : fswatch.sh <directory>" elif [ "$#" -eq 1 ]; then DIR=`pwd`/ echo "Watching for change in $DIR" fswatch -r -o -l 0.2 $DIR | xargs -n1 "${ABSOLUTE_PATH}" --update else pkill -HUP -f nidium.app fi
#todo