view wrappers/dos2unix @ 526:f435e8e3a0ba

Add mkdir.
author Georgi Chorbadzhiyski <georgi@unixsol.org>
date Mon, 05 Mar 2012 22:19:36 -0600
parents 7da386057101
children
line wrap: on
line source

#!/bin/sh
#HELP usage: dos2unix [FILE...]\n\nRemove DOS newlines

[ $# -ne 0 ] && DASH_I=-i
sed $DASH_I -e 's/\r$//' "$@"