1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-24 07:35:24 +02:00

nodemon: change python example to general example (#6956)

This commit is contained in:
Red Headphone 2021-10-21 12:58:19 +05:30 committed by GitHub
parent ddf49b9dce
commit 07d3869a83
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -23,6 +23,10 @@
`nodemon {{arguments}} {{path/to/file.js}}`
- Run non-node scripts:
- Run an arbitrary non-node script:
`nodemon --exec "{{python --verbose}}" {{path/to/file.py}}`
`nodemon --exec "{{command_to_run_script}} {{options}}" {{path/to/script}}`
- Run a Python script:
`nodemon --exec "python {{options}}" {{path/to/file.py}}`