From 1d510e7013813eff807e5af5fe51fb90b2d44540 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dar=C3=ADo=20Here=C3=B1=C3=BA?= Date: Thu, 13 Oct 2022 01:46:15 -0300 Subject: [PATCH] textutil: add Spanish translation (#8988) --- pages.es/osx/textutil.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pages.es/osx/textutil.md diff --git a/pages.es/osx/textutil.md b/pages.es/osx/textutil.md new file mode 100644 index 000000000..9784b9c41 --- /dev/null +++ b/pages.es/osx/textutil.md @@ -0,0 +1,24 @@ +# textutil + +> Manipula archivos de texto en varios formatos. +> Más información: . + +- Muestra información de `foo.rtf`: + +`textutil -info {{foo.rtf}}` + +- Convierte `foo.rtf` en `foo.html`: + +`textutil -convert {{html}} {{foo.rtf}}` + +- Convierte texto enriquecido a texto normal: + +`textutil {{foo.rtf}} -convert {{txt}}` + +- Convierte `foo.txt` en `foo.rtf`, usando la fuente Times con un tamaño 10: + +`textutil -convert {{rtf}} -font {{Times}} -fontsize {{10}} {{foo.txt}}` + +- Carga todos los archivos RTF en el directorio actual, concatena su contenido y escribe el resultado como `index.html` con el título HTML establecido en "Varios archivos": + +`textutil -cat {{html}} -title "Varios archivos" -output {{index.html}} *.rtf`