諸事情あり Hacker Rank の Bash 試験の練習問題を解きました!
いろいろあって悲しかったので、昇華するための output です。
Linux Shell/Bash Let’s Echo Write a bash script that prints the string “HELLO”. echo "HELLO" Looping and Skipping Your task is to use for loops to display only odd natural numbers from 1 to 99. for i in {1..99} do if [ $((i % 2)) = 1 ] then echo $i fi done Looping with Numbers Use a for loop to display the natural numbers from 1 to 50.