#!/bin/sh

if [ "X$1" = "X" ]; then
  echo "No se han dado los archivos a convertir"
  exit 1
fi


cat $* | tr '\r' '\n' | sed 's/^$/%/g' 


