Updated: 06 November 2023
Kebab case | nav-links |
Camel case | navLinks |
Pascal case | NavLinks |
Jersey & Guernsey, United Kingdom
Updated: 06 November 2023
Kebab case | nav-links |
Camel case | navLinks |
Pascal case | NavLinks |
Updated: 13 August 2023
\r\n
DOS / Windows – carriage return + line feed.
CRLF
DOS / Windows – carriage return + line feed.
\n
Unix – line feed.
LF
Unix – line feed.
A program that converts plain text files in DOS/MAC format to UNIX format.
Recursively find all files in current directory and run dos2unix
on each
find . -type f -exec dos2unix {} \;
A program that converts text files in UNIX format to DOS format.
Convert and replace a.txt. Convert and replace b.txt.
unix2dos a.txt b.txt
Updated: 19 September 2022
' '
space
\f
formfeed
\n
newline
\r
carriage return
\t
horizontal tab
\v
vertical tab
Updated: 14 September 2022
An encoding, e.g. UTF-8, defines a mapping between bytes and text.