view po/regen_potfiles.sh @ 2902:1c3289d48273

add headline field
author Igor Ippolitov <iippolitov@gmail.com>
date Mon, 20 Aug 2018 18:30:44 +0300
parents f451d676a829
children
line wrap: on
line source

#!/bin/sh

#generate a patch to update POTFILES.in
#Use like this: ./regen_potfiles.sh | patch -p0
TMP=POTFILES.in.$$
((find ../src/ -type f -name '*.c' ; find ../ -type f -name '*.desktop.in') | while read f; do
	(echo $f | sed 's#^../##')
done) | sort > $TMP
diff -u POTFILES.in $TMP
rm -f $TMP