How can I run a command at the background in Bash without ampersand (&) at the end of a command?
Update:
I want to do it so I can do while inotifywait -e modify app.py; do killall -9 python; python app.py &; done, but that isn't possible because of the syntax.