Search found 1 match
- Thursday 06 February 2014 12:58
- Forum: Others
- Topic: HowTo: monitor Synology NAS
- Replies: 198
- Views: 87994
Re: HowTo: monitor Synology NAS
Your nas.sh script is in DOS format instead of unix format. You need to convert the \r\n characters to \n characters. This can be done with the 'tr' command, e.g. tr -d '\015' <DOS-file >UNIX-file More details at StackOverflow: http://stackoverflow.com/questions/2613800/how-to-convert-dos-windows ...