How to remove BOM from UTF-8 using sed?
Answer:
# sed -e '1s/^\xef\xbb\xbf//' text.txt
Related posts:
Post a Comment