. crep -c3 -d'-*-' "Welcome"
will repeat Welcome message 3 time seperated by '-*-' delimeter.
Welcome-*-Welcome-*-Welcome.
- -c: for count to specify number of times message should be repeated.
- -d: for delimeter to print between message.
Message should be given as last argument.
eg. crep -c 3 -d , hello world
will only take world as message value.