lazarus/tools/getallpofiles.sh
mattias 9f07a137d7 set +x attribute for scripts
git-svn-id: trunk@7434 -
2005-07-27 09:18:33 +00:00

10 lines
116 B
Bash
Executable File

#!/usr/bin/env bash
#
# Author: Mattias Gaertner
find . -name '*.po' -exec echo -n $(basename {}) " " \;
# end.