File edit¶
merge files into one¶
cat ./* > merged-file
cat file.zip* > ./file.zip #concatenate all file.zip.001 etc. into file.zip
unzip file.zip #unzip the file
check new line (\n or \r\n)¶
displays Unix line endings (\n or LF) as $ and Windows line endings (\r\n or CRLF) as ^M$
convert from one to another