2
votes
how do you search for files containing dos line endings (CRLF) with grep under linux?
grep probably isn't the tool you want for this. It will print a line for every matching line in every file. Unless you want to, say, run todos 10 times on a 10 line file, grep isn't the best way …
1
vote
In a bash script, how do I sanitize user input?
As dj_segfault points out, the shell can do most of this for you. Looks like you'll have to fall back on something external for lower-casing the string, though. For this you have many options, li …
