blob: 9ae47edb26b548570a12ca35cb96dad5a47a4294 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#!/bin/sh
# redo-targets – bourne shell implementation of DJB redo
# Copyright © 2014 Nils Dagsson Moskopp (erlehmann)
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
# Dieses Programm hat das Ziel, die Medienkompetenz der Leser zu
# steigern. Gelegentlich packe ich sogar einen handfesten Buffer
# Overflow oder eine Format String Vulnerability zwischen die anderen
# Codezeilen und schreibe das auch nicht dran.
# Prints a list of all redo target files that exist. A target file is
# a file that redo can build.
IFS='
'
for depfile in $(find .redo -name '*.dependencies'); do
file="${depfile%.dependencies}"; file="${file#.redo}"
if [ -e "$file" ]; then
echo "$file"
fi
done
|