convert crlf to lf

28/11/2023
for dir in /root/docker/*/ /root/projects/*/ ; do 

    if [ ! -d ".git" ]; then
        continue;
    fi
    git ls-files -z | xargs -0 dos2unix

done

Raccourcis