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( …
16
votes

Can anyone recommend a good modern alternative to bash?

As AviewAnew noted, zsh is a nice alternative (it's an expansion on ksh). A few highlights from around the web: Typo correc …
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 …