Send SIGWINCH from the keyboard
- use
pgrep myprogram
to get pid of myprogram kill -SIGWINCH pid
you may use
kill -l
to get list of supported signal in numerical form.
kill -28 1234
pgrep myprogram
to get pid of myprogramkill -SIGWINCH pid
you may use
kill -l
to get list of supported signal in numerical form.
kill -28 1234