On Tuesday 29 November 2005 08:14, Daniel Cohen wrote: > On 28/11/05 at 16:24 -0800, mcremer wrote > > >Yes, I did so, once with the Email.pm and once without it. The plugin > >still doesn't show up, neither in the plugins section on the web > >interface, nor on the equivalent menu item on the SB2 itself (how would > >it be called there, by the way?) > > If the plugin doesn't even show up, my guess would be that somehow > (it's actually quite easy to do by mistake) the line endings are > Windows endings (Carriage Return + Line Feed) and should be Unix ones > (Line Feed only). I'm not a Windows user, so I can't say what text > editor can cure this, but it should be easy.
Very useful little shell script that can be used to convert files from windows to unix line breaks (just save it as fixCrs.sh and give it execute permission):- ------------------------------------------- #/!bin/sh # convert a given file into a unix CR format # and save it back under its original name # usage: fixCrs <file> <file> <file> for arg do tr '\015' '\012' < $arg > $arg.fixCrs mv $arg.fixCrs $arg done ------------------------------------------- Alex _______________________________________________ Discuss mailing list [email protected] http://lists.slimdevices.com/lists/listinfo/discuss
