Last active
March 27, 2025 18:34
-
-
Save onegreyonewhite/96f75d3f863d374090c440ba6e515065 to your computer and use it in GitHub Desktop.
test bash
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
for i in {1..10}; do | |
uptime; | |
sleep 2; | |
done | |
exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment