1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 13:24:54 +02:00
tldr/pages/common/noti.md
2018-11-05 22:40:08 +00:00

15 lines
383 B
Markdown

# noti
> Monitor a process and trigger a banner notification.
- Display a notification when tar finishes compressing files:
`noti {{tar -cjf example.tar.bz2 example/}}`
- Display a notification even when you put it after the command to watch:
`{{command_to_watch}}; noti`
- Monitor a process by PID and trigger a notification when the PID disappears:
`noti -w {{process_id}}`