#!/bin/sh

for fname in $*
do
    if [ -f $fname ]; then
        crlf1 $fname
    fi
done