Posts Tagged With: tr

Delete all \n chars in a file…

Tagged with: , , , , , , , ,

Delete all \n chars in a file…


tr -d "\n" 
No Comments »

Change Case

Tagged with: , , , , , ,

Convert from lower case to upper case


echo 'hello world' | tr '[:lower:]' '[:upper:]'
No Comments »