repo.or.cz
/
julien_dotfiles.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
add fedora setup
[julien_dotfiles.git]
/
bin
/
files_exist
blob
351068e04970b52e29257a2835c3499b8aaf4a22
1
#!/bin/sh
2
path
=
"
$1
"
3
shift
4
for
i
in
$@
5
do
6
if
[
-e
"
${path}
/
$i
"
];
then
7
echo
$i
8
fi
9
done