Updates docs for SR1 with final revision
[genesis.git] / fuel / prototypes / auto-deploy / list_fixmes.sh
1 #!/bin/bash
2 ##############################################################################
3 # Copyright (c) 2015 Ericsson AB and others.
4 # stefan.k.berg@ericsson.com
5 # jonas.bjurel@ericsson.com
6 # All rights reserved. This program and the accompanying materials
7 # are made available under the terms of the Apache License, Version 2.0
8 # which accompanies this distribution, and is available at
9 # http://www.apache.org/licenses/LICENSE-2.0
10 ##############################################################################
11
12 for file in `find . -type f -exec egrep -il "FIXME|TODO" {} \; \
13     | grep -v list_fixmes.sh \
14     | grep -v TODO.txt`
15 do
16   echo "***** Things to fix in $file *****"
17   egrep -i "FIXME|TODO" $file
18   echo ""
19 done