Difference between revisions of "Tput bel"
Jump to navigation
Jump to search
Line 3: | Line 3: | ||
* <code>[[tput]] bel</code> | * <code>[[tput]] bel</code> | ||
* <code>[[while true]]; do [[tput bel]]; [[sleep]] 1; done</code> | * <code>[[while true]]; do [[tput bel]]; [[sleep]] 1; done</code> | ||
+ | |||
+ | == Scripts == | ||
+ | {{check PID running}} | ||
== Related == | == Related == |
Revision as of 15:43, 30 March 2023
tput bel
while true; do tput bel; sleep 1; done
Scripts
#!/bin/bash if [ $# -eq 0 ] then echo "Usage: $0 <process PID>" echo "Checks if a process is running by its PID." exit 1 fi # Get the PID of the process to check from the command line argument process_pid=$1 # Check if the process is running if ps -p $process_pid > /dev/null then echo "Process with PID $process_pid is running." else echo "Process with PID $process_pid is not running. Running tput bel..." while true; do tput bel; sleep 1; done fi
Related
echo -e '\a'
afplay
ffplay
say beep
- wikipedia:Bell character
zenity --info --text "hello world"
ping -a
See also
Advertising: