* pages/*: add standard translation and links Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * fix1: false positives; standardize Bengali, Hindi, Nepali periods * fix: periods in recently added Bengali pages Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * fix: false positives in modified files Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * cleanup: update to native period in Bengali l10n Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> --------- Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
353 B
353 B
while
Loop simples da shell. Mais informações: https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_09_04_09.
- Lê a entrada default (
stdin) e realiza uma ação a cada linha:
while read line; do echo "$line"; done
- Executa um comando para sempre a cada segundo:
while :; do {{comando}}; sleep 1; done