Change naming and veriy test-scheduler function
[bottlenecks.git] / utils / tools / dos2unix.sh
1 #!/bin/bash
2 for file in `find ./`
3 do
4 vi +':w ++ff=unix' +':q' ${file}
5 done