domingo, 7 de agosto de 2016

How do I replace single quotes with space in sed?

up vote24down voteaccepted
Try to keep sed commands simple as much as possible or else you'll get confused of what you'd written after reading it later.
#!/bin/bash
sed "s/'/ /g" myfile.txt
http://stackoverflow.com/questions/17357952/how-do-i-replace-single-quotes-with-space-in-sed

No hay comentarios:

Publicar un comentario