arief-m
5/11/2016 - 4:40 AM

menghapus blangk space pada file

menghapus blangk space pada file

pada linux
sed -i '/^[[:space:]]*$/d;s/[[:space:]]*$//' foo

pada solaris
tr -d '\015' < input | sed -e 's/  *$//' -e '/^ *$/d' > output