From: epg <> Date: Wed, 21 Apr 2004 15:56:56 +0000 (+0000) Subject: Use zsh arithmetic for loop instead of jot(1). X-Git-Url: https://diplodocus.org/git/flac-archive/commitdiff_plain/623afee5f5a856f4538a0d00de4c3cf850c1939c?hp=38d7bbebf8335dfc4735b7aa6a51f32e7543e1c9 Use zsh arithmetic for loop instead of jot(1). --- diff --git a/fa-tags b/fa-tags index 34eafb8..743736a 100755 --- a/fa-tags +++ b/fa-tags @@ -98,6 +98,6 @@ ARTIST= ALBUM= DATE= EOF -for i in $(jot $2 1); do +for (( i = 1; i <= $2; i++ )); do echo 'TITLE=' >> candidate-tags-0 done