Recently, I have written one shell script in Notepad++ on Windows machine. But when I transferred this script to Linux box I observed that the commands containing - (dash or hyphen or minus) sign got replaced with <96>. e.g. the original command is like below -
unzip -d $dir_to_unzip file.zip
But when transferred to Linux server it became like below-
unzip <96>d $dir_to_unzip file.zip
I am not an Unix expert and not able to find what is causing this change and how to correct it. Any help would be really appreciated.