Bash - Delete Characters in a String with `tr -d`

#!/bin/bash echo "The quick brown fox jumps over the lazy dog" | tr -d 'aeiouy' # Th qck brwn fx jmps vr th lz dg

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.