Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cmake: better error message
[simgrid.git] / tools / doxygen / list_routing_models_examples.sh
1 #!/bin/sh
2
3 cd $(dirname $0)/../../
4
5 # -R -- we want to search recursively
6 # -l -- only filenames, nothing else
7 # $1 -- argument to this script, name of the routing model (e.g., "Floyd")
8 # .  -- search in the examples folder and search EVERYTHING
9 # --include -- but only include results that end in ".xml" 
10 grep -R -l "$1" examples/ --include "*.xml"
11
12 exit 0