#!/bin/sh # train: CONVERT-A-STRING-INTO-TRAIN-CASE echo "$1" | tr ' ' '-' | tr '[:lower:]' '[:upper:]' | sed 's/[^a-zA-Z0-9-]//g'