From 5c4e2bf7105fcfa9d5bd366fa4362d6cf992fb13 Mon Sep 17 00:00:00 2001 From: arif-pragmasys Date: Wed, 16 Sep 2015 23:31:03 -0500 Subject: [PATCH] Updated Dos2Unix Text file format converters (markdown) --- Dos2Unix---Text-file-format-converters.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dos2Unix---Text-file-format-converters.md b/Dos2Unix---Text-file-format-converters.md index e3b8244..8806b2c 100644 --- a/Dos2Unix---Text-file-format-converters.md +++ b/Dos2Unix---Text-file-format-converters.md @@ -12,12 +12,12 @@ Editing UNIX files on Windows changes the EOL fron UNIX to DOS, which might make _// to covert all file_ -`**for /R %G in (*.*) do dos2unix "%G"**` +`for /R %G in (*.*) do dos2unix "%G"` _// to covert all .h files_ -`**for /R %G in (*.h) do dos2unix "%G"**` +`for /R %G in (*.h) do dos2unix "%G"` _// to covert all .c file_ -`**for /R %G in (*.c) do dos2unix "%G"**` \ No newline at end of file +`for /R %G in (*.c) do dos2unix "%G"` \ No newline at end of file