Search Results

3
votes
5answers
2k views

In a bash script, how do I sanitize user input?

I'm looking for the best way to take a simple input: echo -n "Enter a string here: " read -e STRING and clean it up by removing non-alphanumeric characters, lower( …
0
votes

In a bash script, how do I sanitize user input?

After a bit of looking around it seems tr is indeed the simplest way: export CLEANSTRING="`echo -n "${STRING}" | tr -cd '[:alnum:] [:space:]' | tr '[:space:]' '-' | tr …