diff --git a/.gitignore b/.gitignore index b411792..b01d11f 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,5 @@ /.vscode access.log db/documents.db +vendor +/.vs diff --git a/tools/convertLE.sh b/tools/convertLE.sh new file mode 100644 index 0000000..aedb442 --- /dev/null +++ b/tools/convertLE.sh @@ -0,0 +1,6 @@ +#!/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 {} \;