Exercism: Bash version of the 'Raindrops' exercise.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
240 B

3 years ago
  1. #!/usr/bin/env bash
  2. [[ -z $1 || ! $1 =~ ^[0-9]+$ ]] && echo "Usage: $0 <number>" && exit 1
  3. [[ $(( $1%7 )) = 0 ]] && res+="Pling"
  4. [[ $(( $1%5 )) = 0 ]] && res+="Plang"
  5. [[ $(( $1%3 )) = 0 ]] && res+="Plong"
  6. [[ -z $res ]] && res=$1
  7. echo $res