Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 271 Bytes

tr.md

File metadata and controls

20 lines (16 loc) · 271 Bytes

Remove null bytes from file

tr < <oldFile> -d '\000' > <newFile>

Convert to lower case

tr '[:upper:]' '[:lower:]'

Split single line at blank

tr " " "\n"

Remove all non-printable ASCII characters

tr -cd '\11\12\40-\176'