Another week, another new #vmod for #varnishcache
#vmod #varnishcache #iconv #vcl
Source: https://discuss.afpy.org/t/python-et-unicode/1600/11
#linux #unicode #UTF-8 #ISO-8859-1 #conversion #iconv
"Pour mes listings Python sous LaTeX en ISO-8859-1, je les passe en UTF8 à l’aide de la commande Linux iconv.
iconv -f ISO-8859-1 -t UTF8 mon_fichier_latin1 -o mon_fichier_UTF8
On peut sur ce même principe passer de l’UTF8 à l’ISO-8859-1:
iconv -f UTF8 -t ISO-8859-1 mon_fichier_UTF8 -o mon_fichier_latin1"
#iconv #conversion #iso #utf #unicode #linux
Selection with mouse from PDF produces weird characters #commandline #pdf #iconv
Eliminar tildes con sed o iconv (GNU/Linux) #edición_de_textos #iconv #gnu_linux #tildes #sed https://freakspot.net/eliminar-tildes-con-GNU-sed/
#edicion_de_textos #iconv #gnu_linux #tildes #sed
Fixing the Unicode Normalization Form of filenames on a Linux filesystem caused a sheer amount of frustration. Eventually, I transliterated all filenames to ascii using:
for i in `find . -type f` ; do o="`echo $i | iconv -f utf-8 -t ascii//TRANSLIT`" ; if [ "$i" != "$o" ] ; then mv "$i" "$o" ; fi ;done
@accessiblestef@toot.cafe @emmanuelc@mamot.fr Je sais pas, bonne question, je ne connais pas #iconv.
C'est à tout le moins une alternative 😉