From a43ffe7b214336b5ff551c8965d6fd16c63b13ed Mon Sep 17 00:00:00 2001 From: DongHun Kwak Date: Wed, 13 Sep 2017 16:01:27 +0900 Subject: Imported Upstream version 7.3.5 Change-Id: If401ea1da0876f720539b64ea208bc4e47e084fa Signed-off-by: DongHun Kwak --- man/es/man1/dos2unix.1 | 33 ++++++++++++++++++++++++--------- man/es/man1/dos2unix.htm | 20 +++++++++++++++----- man/es/man1/dos2unix.pod | 28 +++++++++++++++++++++------- man/es/man1/dos2unix.txt | 27 ++++++++++++++++++++------- 4 files changed, 80 insertions(+), 28 deletions(-) (limited to 'man/es') diff --git a/man/es/man1/dos2unix.1 b/man/es/man1/dos2unix.1 index 62ce119..0a284ef 100644 --- a/man/es/man1/dos2unix.1 +++ b/man/es/man1/dos2unix.1 @@ -1,4 +1,4 @@ -.\" Automatically generated by Pod::Man 2.28 (Pod::Simple 3.32) +.\" Automatically generated by Pod::Man 2.28 (Pod::Simple 3.35) .\" .\" Standard preamble: .\" ======================================================================== @@ -71,7 +71,7 @@ .\" ======================================================================== .\" .IX Title "dos2unix 1" -.TH dos2unix 1 "2016-05-24" "dos2unix" "2016-05-24" +.TH dos2unix 1 "2017-07-04" "dos2unix" "2017-07-04" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l @@ -286,6 +286,12 @@ option \f(CW\*(C`\-s\*(C'\fR. Se pueden utilizar marcas extras opcionales para modificar la salida. Se pueden añadir una o más marcas. .RS 4 +.IP "\fB0\fR" 4 +.IX Item "0" +Print the file information lines followed by a null character instead of a +newline character. This enables correct interpretation of file names with +spaces or quotes when flag c is used. Use this flag in combination with +\&\fIxargs\fR\|(1) option \f(CW\*(C`\-0\*(C'\fR or \f(CW\*(C`\-\-null\*(C'\fR. .IP "\fBd\fR" 4 .IX Item "d" Muestra el número de saltos de línea \s-1DOS.\s0 @@ -353,13 +359,13 @@ Convert only files that have \s-1DOS\s0 line breaks and leave the other files untouched: .Sp .Vb 1 -\& dos2unix \-ic *.txt | xargs dos2unix +\& dos2unix \-ic0 *.txt | xargs \-0 dos2unix .Ve .Sp Find text files that have \s-1DOS\s0 line breaks: .Sp .Vb 1 -\& find \-name \*(Aq*.txt\*(Aq | xargs dos2unix \-ic +\& find \-name \*(Aq*.txt\*(Aq \-print0 | xargs \-0 dos2unix \-ic .Ve .RE .IP "\fB\-k, \-\-keepdate\fR" 4 @@ -779,13 +785,22 @@ reemplaza b.txt, convierte d.txt y escribe en f.txt: .Ve .SH "CONVERSIÓN RECURSIVA" .IX Header "CONVERSIÓN RECURSIVA" -Use dos2unix en combinación con los comandos \fIfind\fR\|(1) y \fIxargs\fR\|(1) para -convertir recursivamente archivos de texto contenidos en un árbol de -directorios. Por ejemplo para convertir todos los archivos .txt en el árbol -de directorios debajo del directorio actual escriba: +In a Unix shell the \fIfind\fR\|(1) and \fIxargs\fR\|(1) commands can be used to run +dos2unix recursively over all text files in a directory tree. For instance +to convert all .txt files in the directory tree under the current directory +type: .PP .Vb 1 -\& find . \-name \*(Aq*.txt\*(Aq |xargs dos2unix +\& find . \-name \*(Aq*.txt\*(Aq \-print0 |xargs \-0 dos2unix +.Ve +.PP +The \fIfind\fR\|(1) option \f(CW\*(C`\-print0\*(C'\fR and corresponding \fIxargs\fR\|(1) option \f(CW\*(C`\-0\*(C'\fR are +needed when there are files with spaces or quotes in the name. Otherwise +these options can be omitted. Another option is to use \fIfind\fR\|(1) with the +\&\f(CW\*(C`\-exec\*(C'\fR option: +.PP +.Vb 1 +\& find . \-name \*(Aq*.txt\*(Aq \-exec dos2unix {} \e; .Ve .PP In a Windows Command Prompt the following command can be used: diff --git a/man/es/man1/dos2unix.htm b/man/es/man1/dos2unix.htm index 99d8963..92f7867 100644 --- a/man/es/man1/dos2unix.htm +++ b/man/es/man1/dos2unix.htm @@ -2,7 +2,7 @@ -dos2unix 7.3.4 - Convertidor de archivos de texto de formato DOS/Mac a Unix y viceversa +dos2unix 7.3.5 - Convertidor de archivos de texto de formato DOS/Mac a Unix y viceversa @@ -234,6 +234,12 @@
+
0
+
+ +

Print the file information lines followed by a null character instead of a newline character. This enables correct interpretation of file names with spaces or quotes when flag c is used. Use this flag in combination with xargs(1) option -0 or --null.

+ +
d
@@ -310,11 +316,11 @@

Convert only files that have DOS line breaks and leave the other files untouched:

-
    dos2unix -ic *.txt | xargs dos2unix
+
    dos2unix -ic0 *.txt | xargs -0 dos2unix

Find text files that have DOS line breaks:

-
    find -name '*.txt' | xargs dos2unix -ic
+
    find -name '*.txt' -print0 | xargs -0 dos2unix -ic
-k, --keepdate
@@ -651,9 +657,13 @@

CONVERSIÓN RECURSIVA

-

Use dos2unix en combinación con los comandos find(1) y xargs(1) para convertir recursivamente archivos de texto contenidos en un árbol de directorios. Por ejemplo para convertir todos los archivos .txt en el árbol de directorios debajo del directorio actual escriba:

+

In a Unix shell the find(1) and xargs(1) commands can be used to run dos2unix recursively over all text files in a directory tree. For instance to convert all .txt files in the directory tree under the current directory type:

+ +
    find . -name '*.txt' -print0 |xargs -0 dos2unix
+ +

The find(1) option -print0 and corresponding xargs(1) option -0 are needed when there are files with spaces or quotes in the name. Otherwise these options can be omitted. Another option is to use find(1) with the -exec option:

-
    find . -name '*.txt' |xargs dos2unix
+
    find . -name '*.txt' -exec dos2unix {} \;

In a Windows Command Prompt the following command can be used:

diff --git a/man/es/man1/dos2unix.pod b/man/es/man1/dos2unix.pod index b10c122..bbf14b6 100644 --- a/man/es/man1/dos2unix.pod +++ b/man/es/man1/dos2unix.pod @@ -249,6 +249,13 @@ pueden añadir una o más marcas. =over 4 +=item B<0> + +Print the file information lines followed by a null character instead of a +newline character. This enables correct interpretation of file names with +spaces or quotes when flag c is used. Use this flag in combination with +xargs(1) option C<-0> or C<--null>. + =item B Muestra el número de saltos de línea DOS. @@ -312,11 +319,11 @@ Muestra los archivos que tienen saltos de línea Unix: Convert only files that have DOS line breaks and leave the other files untouched: - dos2unix -ic *.txt | xargs dos2unix + dos2unix -ic0 *.txt | xargs -0 dos2unix Find text files that have DOS line breaks: - find -name '*.txt' | xargs dos2unix -ic + find -name '*.txt' -print0 | xargs -0 dos2unix -ic =item B<-k, --keepdate> @@ -725,12 +732,19 @@ reemplaza b.txt, convierte d.txt y escribe en f.txt: =head1 CONVERSIÓN RECURSIVA -Use dos2unix en combinación con los comandos find(1) y xargs(1) para -convertir recursivamente archivos de texto contenidos en un árbol de -directorios. Por ejemplo para convertir todos los archivos .txt en el árbol -de directorios debajo del directorio actual escriba: +In a Unix shell the find(1) and xargs(1) commands can be used to run +dos2unix recursively over all text files in a directory tree. For instance +to convert all .txt files in the directory tree under the current directory +type: + + find . -name '*.txt' -print0 |xargs -0 dos2unix + +The find(1) option C<-print0> and corresponding xargs(1) option C<-0> are +needed when there are files with spaces or quotes in the name. Otherwise +these options can be omitted. Another option is to use find(1) with the +C<-exec> option: - find . -name '*.txt' |xargs dos2unix + find . -name '*.txt' -exec dos2unix {} \; In a Windows Command Prompt the following command can be used: diff --git a/man/es/man1/dos2unix.txt b/man/es/man1/dos2unix.txt index 3d5a378..2dee0e6 100644 --- a/man/es/man1/dos2unix.txt +++ b/man/es/man1/dos2unix.txt @@ -201,6 +201,12 @@ PARÁMETROS Se pueden utilizar marcas extras opcionales para modificar la salida. Se pueden añadir una o más marcas. + 0 Print the file information lines followed by a null character + instead of a newline character. This enables correct + interpretation of file names with spaces or quotes when flag c + is used. Use this flag in combination with xargs(1) option -0 or + "--null". + d Muestra el número de saltos de línea DOS. u Muestra el número de saltos de línea Unix. @@ -246,11 +252,11 @@ PARÁMETROS Convert only files that have DOS line breaks and leave the other files untouched: - dos2unix -ic *.txt | xargs dos2unix + dos2unix -ic0 *.txt | xargs -0 dos2unix Find text files that have DOS line breaks: - find -name '*.txt' | xargs dos2unix -ic + find -name '*.txt' -print0 | xargs -0 dos2unix -ic -k, --keepdate Mantiene la fecha del archivo de salida igual a la del archivo de @@ -631,12 +637,19 @@ EJEMPLOS dos2unix -n c.txt e.txt -o a.txt b.txt -n d.txt f.txt CONVERSIÓN RECURSIVA - Use dos2unix en combinación con los comandos find(1) y xargs(1) para - convertir recursivamente archivos de texto contenidos en un árbol de - directorios. Por ejemplo para convertir todos los archivos .txt en el - árbol de directorios debajo del directorio actual escriba: + In a Unix shell the find(1) and xargs(1) commands can be used to run + dos2unix recursively over all text files in a directory tree. For + instance to convert all .txt files in the directory tree under the + current directory type: + + find . -name '*.txt' -print0 |xargs -0 dos2unix + + The find(1) option "-print0" and corresponding xargs(1) option -0 are + needed when there are files with spaces or quotes in the name. Otherwise + these options can be omitted. Another option is to use find(1) with the + "-exec" option: - find . -name '*.txt' |xargs dos2unix + find . -name '*.txt' -exec dos2unix {} \; In a Windows Command Prompt the following command can be used: -- cgit v1.2.3