Update ha_entrypoint_modif.sh

This commit is contained in:
Alexandre
2023-12-24 20:07:15 +01:00
committed by GitHub
parent fadbf73786
commit 3b838c21cc

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 -not -path '*/\.*' -exec grep -Il '.' {} \ -print0; | xargs -0 -d '\n' -L 1 dos2unix -k
fi
done