Root/bin/purge

Source at commit 834157426afb39b4958da6f82c533d7168217376 created 12 years 5 months ago.
By Werner Almesberger, labsw/Makefile (bom): generate .lst file from eeschema
1#!/bin/sh
2if [ "$1" ]; then
3    cd "$1" || exit
4fi
5git ls-files -m | grep '.pro$' |
6    while read n; do
7    if ! [ "`git diff "$n" |
8      sed '/^--- /d;/^+++ /d;/^[^-+]/d;/^.update=/d'`" ]; then
9        echo purging "$n" 1>&2
10        git checkout "$n"
11    fi
12    done
13

Archive Download this file

Branches:
master



interactive