Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 118 Bytes

13批量修改文件格式.md

File metadata and controls

9 lines (7 loc) · 118 Bytes

批量修改为unix

for file in `find hack/lib -name *.sh`
do
vi +':w ++ff=unix' +':q' ${file}
done