Files
iot/tools/convertLE.sh
Dobromir Popov ONE 145e202d24 project mainenance:
ignoring .vs folder
added shell script to convert dos2unix line endings
2023-05-14 21:38:14 +03:00

7 lines
321 B
Bash

#!/bin/bash
#> cd /D/DEV/Web/TEMP/iotSync/iot.d-popov.com-LFfixed/tools
#> bash convertLE.sh
parent_folder=".."
find "$parent_folder" -type f ! -path "*/.git/*" ! -path "*/.vs/*" ! -path "*/.ionide/*" ! -path "*/.vscode/*" ! -path "*/.devcontainer/*" ! -path "*/node_modules/*" -exec dos2unix {} \; -exec unix2dos {} \;