All Downloads are FREE. Search and download functionalities are using the official Maven repository.

copy.analyzeFirstCalls.sh Maven / Gradle / Ivy

The newest version!
file=$(echo rca/level/*/*/*/*/*/kieker*/ | awk '{print $1}' )
cat $file/measurement* | awk -F';' '{print $1}' | sort | uniq |
        while read method
        do
                echo -n "$method "
                cat $file/measurement* | grep "$method" | awk -F';' '{sum+=$7} END {print sum}'
        done




© 2015 - 2024 Weber Informatics LLC | Privacy Policy