view wrappers/dos2unix @ 599:4d0498e1f657

A few more links for the index.
author Rob Landley <rob@landley.net>
date Thu, 14 Jun 2012 00:33:33 -0500
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$//' "$@"