From e24959113a56941c8f03940bd26a92d91a68e830 Mon Sep 17 00:00:00 2001 From: Bonnie I-Man Ng Date: Fri, 6 Sep 2019 18:08:52 +0800 Subject: [PATCH] add commands in 'Other' Repeat printing string n times --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index af53c51..424f0d7 100644 --- a/README.md +++ b/README.md @@ -2182,6 +2182,11 @@ hostnamectl set-hostname "mynode" ## Others [[back to top](#handy-bash-one-liners)] +##### Repeat printing string n times (e.g. print 'hello world' five times) +```bash +printf 'hello world\n%.0s' {1..5} +``` + ##### Encode strings as Base64 strings ```bash echo test|base64