On 05/11/2016 09:58 PM, dabicho wrote: > Hello. > I have a problem copying from terminology > > My terminal has utf8 environment but I am tailing (tail -f) a growing > log file that has not utf8 encoding.
Do you know what the encoding is? Try to find out with the file command, eg file yourfilename.log Then pipe the tail through iconv: tail -f yourfilename.log | iconv -f iso-8859-1 -t utf-8 (or whatever). I haven't tried this but maybe it works. ///Peter ------------------------------------------------------------------------------ Mobile security can be enabling, not merely restricting. Employees who bring their own devices (BYOD) to work are irked by the imposition of MDM restrictions. Mobile Device Manager Plus allows you to control only the apps on BYO-devices by containerizing them, leaving personal data untouched! https://ad.doubleclick.net/ddm/clk/304595813;131938128;j _______________________________________________ enlightenment-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/enlightenment-users
