14,970
edits
| Line 25: | Line 25: | ||
* Background process finished alert: Available {{Gd}} When multiple tabs are open at the same time: iTerm displays a tree dots {{kbd | key=<nowiki>...</nowiki>}} on the tab when a background process completes. | * Background process finished alert: Available {{Gd}} When multiple tabs are open at the same time: iTerm displays a tree dots {{kbd | key=<nowiki>...</nowiki>}} on the tab when a background process completes. | ||
== Test | == Test scripts == | ||
This command simulates a test process with a random 3-5 second delay between start and completion messages. | This BASH script command simulates a test process with a random 3-5 second delay between start and completion messages. | ||
<pre> | <pre> | ||
echo "Starting test..." && sleep $((3 + RANDOM % 3)) && echo "Test completed!" | echo "Starting test..." && sleep $((3 + RANDOM % 3)) && echo "Test completed!" | ||
</pre> | |||
Windows DOS command | |||
<pre> | |||
echo Starting test... && timeout /t %random:~-1% /nobreak >nul && echo Test completed! | |||
</pre> | </pre> | ||