#!/bin/sh # scream: CONVERT_A_STRING_INTO_SCREAM_CASE echo "$1" | tr ' ' '_' | tr '[:lower:]' '[:upper:]' | sed 's/[^a-zA-Z0-9_]//g'