From cf1b9177b7ea00dfa98fa377e2d2d4c65c27fef3 Mon Sep 17 00:00:00 2001 From: fejx Date: Sun, 10 May 2020 15:12:37 +0200 Subject: [PATCH] dos2unix, unix2dos, mac2unix, unix2mac: use consistent naming MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Apply suggestions from code review Co-authored-by: Zlatan Vasović --- pages/linux/dos2unix.md | 4 ++-- pages/linux/mac2unix.md | 4 ++-- pages/linux/unix2dos.md | 4 ++-- pages/linux/unix2mac.md | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/pages/linux/dos2unix.md b/pages/linux/dos2unix.md index 38100a0671..dea8bf5595 100644 --- a/pages/linux/dos2unix.md +++ b/pages/linux/dos2unix.md @@ -1,12 +1,12 @@ # dos2unix -> Change dos-style line endings to unix-style. +> Change DOS-style line endings to Unix-style. > Replaces CRLF with CR. - Change line endings of a file: `dos2unix {{filename}}` -- Create a copy with unix-style line endings: +- Create a copy with Unix-style line endings: `dos2unix -n {{filename}} {{new_filename}}` diff --git a/pages/linux/mac2unix.md b/pages/linux/mac2unix.md index 0d6647ca12..a508c298c4 100644 --- a/pages/linux/mac2unix.md +++ b/pages/linux/mac2unix.md @@ -1,12 +1,12 @@ # mac2unix -> Change mac-style line endings to unix-style. +> Change macOS-style line endings to Unix-style. > Replaces LF with CR. - Change line endings of a file: `mac2unix {{filename}}` -- Create a copy with unix-style line endings: +- Create a copy with Unix-style line endings: `mac2unix -n {{filename}} {{new_filename}}` diff --git a/pages/linux/unix2dos.md b/pages/linux/unix2dos.md index bc7c4deae1..726e6bd334 100644 --- a/pages/linux/unix2dos.md +++ b/pages/linux/unix2dos.md @@ -1,12 +1,12 @@ # unix2dos -> Change unix-style line endings to dos-style. +> Change Unix-style line endings to DOS-style. > Replaces CR with CRLF. - Change line endings of a file: `unix2dos {{filename}}` -- Create a copy with dos-style line endings: +- Create a copy with DOS-style line endings: `unix2dos -n {{filename}} {{new_filename}}` diff --git a/pages/linux/unix2mac.md b/pages/linux/unix2mac.md index ca658020eb..fe591cd21d 100644 --- a/pages/linux/unix2mac.md +++ b/pages/linux/unix2mac.md @@ -1,12 +1,12 @@ # unix2mac -> Change unix-style line endings to mac-style. +> Change Unix-style line endings to macOS-style. > Replaces CR with LF. - Change line endings of a file: `unix2mac {{filename}}` -- Create a copy with mac-style line endings: +- Create a copy with macOS-style line endings: `unix2mac -n {{filename}} {{new_filename}}`