Welcome to mirror list, hosted at ThFree Co, Russian Federation.

unlinked-images.sh « tasks - gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d7c9f704f8e175f6148df84eff459171725d45bc (plain)
1
2
3
for FILE in $(git ls-files ./$1/*.png ./$1/**/*.gif ./$1/**/*.jpg); do
    git grep $(basename "$FILE") > /dev/null || echo "Unlinked file: $FILE"
done