Gitiles
Code Review
Sign In
gerrit.openbmc.org
/
openbmc
/
openpower-libhei
/
fe678be40f90796819b1017022e70c8d07a1ab70
/
.
/
xml
/
xml_list.sh
blob: ca598ccf214b9477d85388dc4960472f7f04ad1b [
file
] [
log
] [
blame
]
#!/bin/sh
# Verify input.
if
[
!
-
d
"$1"
];
then
echo
"Invalid directory: $1"
1
>&
2
exit
1
fi
# Simply list out all of the XML files in the given directory.
for
i
in
"$1"
/*.
xml
;
do
if
[
-
f
"$i"
];
then
echo
"$i"
fi
done