User:Benjamin Coddington
From Linux NFS
(Difference between revisions)
Latest revision as of 16:17, 10 April 2016
I'm a linux nfs developer currently working for Red Hat; previously I built storage for universities. I've got to fill this space with 50 words, but there's not much more interesting to say about myself.
Instead, how about a tip: do you have a file with unknown chars in its name that you wish you could delete? Use printf(1)'s %q to display equivalent chars, like this:
for i in *; do printf "%q\n" "${i}"; done