Update ha_entrypoint_modif.sh

This commit is contained in:
Alexandre
2023-12-25 07:07:09 +01:00
committed by GitHub
parent 29af843c9c
commit d12680522f

View File

@@ -10,7 +10,7 @@ set -e
for folders in /default /defaults /etc; do
if [ -d "$folders" ]; then
find "$folders" -type f -not -path '*/\.*' -exec grep -Il '.' {} \; | xargs -d '\n' -L 1 dos2unix -k
find "$folders" -type f -print0 | xargs -0 dos2unix
fi
done