File: undos.sh

package info (click to toggle)
libsrtp2 2.0.0%2B20170123-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,760 kB
  • ctags: 1,344
  • sloc: ansic: 14,833; sh: 3,430; makefile: 375
file content (10 lines) | stat: -rwxr-xr-x 167 bytes parent folder | download | duplicates (15)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
# 
# usage: undos <file>
# 
# strips CRs from a file - useful when moving DOS-created files
# onto UN*X machines

cat $1 | tr -d "\r" > $1.tmp
mv $1.tmp $1