[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: sed command spanning multiple lines



>
> sed -e 's/\.//g'
> -e 's/\,//g'
> -e 's/\\//g' "$1"

... but also note that this can be done with a single command (escaping is 
useless here) : 's/[,/.]//g'

-- 
Cédric Lucantis



Reply to: