LINUX.ORG.RU

История изменений

Исправление intelfx, (текущая версия) :

Без башизмов я не умею, потому что POSIX sh — убожество, поэтому вот:

while read repo; do
     while read line; do
        filePath="${line# M }"
        message="autoupdate of ${filePath//..\//}"
        vcsh run "${repo}" git commit "${filePath}" -m "${message}"
    done < <(vcsh status "${repo}")

    vcsh push "${repo}" > /dev/null
done < <(vcsh list)

Исправление intelfx, :

Без башизмов я не умею, потому что POSIX sh — убожество, поэтому вот:

while read repo; do
     while read line; do
        filePath="${line# M }"
        message="autoupdate of ${filePath//..\//}"
        vcsh run "$repo" git commit "${filePath}" -m "${message}"
    done < <(vcsh status "${repo}")

    vcsh push "${repo}" > /dev/null
done < <(vcsh list)

Исправление intelfx, :

Без башизмов я не умею, потому что POSIX sh — убожество, поэтому вот:

while read repo; do
     while read line; do
        filePath="${line# M }"
        message="autoupdate of ${filePath//..\//}"
        vcsh run "$repo" git commit "${filePath}" -m "${message}"
    done < <(vcsh status "$repo")

    vcsh push "${repo}" > /dev/null
done < <(vcsh list)

Исходная версия intelfx, :

Без башизмов я не умею, потому что POSIX sh — убожество, поэтому вот:

while read repo; do
     while read line; do
        filePath="${line# M }"
        message="autoupdate of ${filePath//..\//}"
        vcsh run "$repo" git commit "${filePath}" -m "${message}"
    done < <(vcsh status "$repo")

    vcsh push "${repo}"
done < <(vcsh list)