You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
449 B
12 lines
449 B
#!/usr/bin/env bash
|
|
|
|
echo "Converting line endings..."
|
|
find Inc -type f -print0 | xargs -0 -n 10 -P 4 dos2unix -q
|
|
find Src -type f -print0 | xargs -0 -n 10 -P 4 dos2unix -q
|
|
find Middlewares -type f -print0 | xargs -0 -n 10 -P 4 dos2unix -q
|
|
find Drivers -type f -print0 | xargs -0 -n 10 -P 4 dos2unix -q
|
|
find User -type f -print0 | xargs -0 -n 10 -P 4 dos2unix -q
|
|
dos2unix -q Makefile
|
|
|
|
find Patches -type f -print0 | xargs -0 -n 10 -P 4 dos2unix -q
|
|
|
|
|