7 lines
211 B
Bash
Executable File
7 lines
211 B
Bash
Executable File
# CubeMX and TouchGFX Designer generate code using CRLF as newline characters
|
|
# this command converts all newline characters from CRLF to LF
|
|
|
|
BASEDIR=$(dirname "$0")
|
|
|
|
find "$BASEDIR" -type f -exec dos2unix {} +
|