I am doing compressing of JavaScript files and the compressor is complaining that my files have ??? character in them.
???
How can I search for these characters and remove them?
You can easily remove them using vim, here are the steps:
1) In your terminal, open the file using vim:
vim file_name
2) Remove all BOM characters:
:set nobomb
3) Save the file:
:wq
2.1m questions
2.1m answers
60 comments
57.0k users