Created
April 9, 2025 16:14
-
-
Save christianwish/c865479ad2f362e5994759a206f9cf98 to your computer and use it in GitHub Desktop.
Overwrite a line in Terminal (for counter and stuff)
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
(defun update-line-counter (max) | |
"Zählt von 1 bis MAX in derselben Terminalzeile hoch." | |
(loop for i from 1 to max do | |
(format t "~c[2K~c[0GZähler: ~d" #\Escape #\Escape i) | |
(finish-output) | |
(sleep 1))) | |
(update-line-counter 10) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment