File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change
1
+ # fmt
2
+
3
+ > Reformatea un archivo de texto uniendo sus párrafos y limitando el ancho de línea a un número de caracteres (75 por defecto).
4
+ > Más información: < https://www.gnu.org/software/coreutils/manual/html_node/fmt-invocation.html > .
5
+
6
+ - Reformatea un archivo:
7
+
8
+ ` fmt {{ruta/al/archivo}} `
9
+
10
+ - Reformatea un archivo produciendo líneas de salida de (como máximo) ` n ` caracteres:
11
+
12
+ ` fmt {{[-w|--width]}} {{n}} {{ruta/al/archivo}} `
13
+
14
+ - Reformatea un archivo sin unir las líneas más cortas respecto al ancho dado:
15
+
16
+ ` fmt {{[-s|--split-only]}} {{ruta/al/archivo}} `
17
+
18
+ - Reformatea un archivo con espaciado uniforme (1 espacio entre palabras y 2 espacios entre párrafos):
19
+
20
+ ` fmt {{[-u|--uniform-spacing]}} {{ruta/al/archivo}} `
You can’t perform that action at this time.
0 commit comments