Project

General

Profile

1
#!/bin/bash
2
# Standardizes \r\n line endings to \n
3
# Usage: self <in >out
4

    
5
tr -d $'\r'
(30-30/86)