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
8 lines
240 B
#!/usr/bin/env bash
|
|
|
|
[[ -z $1 || ! $1 =~ ^[0-9]+$ ]] && echo "Usage: $0 <number>" && exit 1
|
|
[[ $(( $1%7 )) = 0 ]] && res+="Pling"
|
|
[[ $(( $1%5 )) = 0 ]] && res+="Plang"
|
|
[[ $(( $1%3 )) = 0 ]] && res+="Plong"
|
|
[[ -z $res ]] && res=$1
|
|
echo $res
|