From a828ffa4c16ab338ac6ad01bb4614ed08be2da92 Mon Sep 17 00:00:00 2001 From: camilo andres marin valencia <106450384+kmilo2811V@users.noreply.github.com> Date: Sun, 12 Jun 2022 16:30:24 -0500 Subject: [PATCH] # Write a Bash script that displays Best School 10 times --- SC2034----value.md | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 SC2034----value.md diff --git a/SC2034----value.md b/SC2034----value.md new file mode 100644 index 0000000..51c1c9d --- /dev/null +++ b/SC2034----value.md @@ -0,0 +1,6 @@ +#!/usr/bin/env bash +# Write a Bash script that displays Best School 10 times +for LIST in [1..10]; +do + echo "Best Shool" +done \ No newline at end of file