Skip to content

Instantly share code, notes, and snippets.

@kowalcj0
Created January 7, 2015 16:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kowalcj0/7681a6b21719c373caa1 to your computer and use it in GitHub Desktop.
Save kowalcj0/7681a6b21719c373caa1 to your computer and use it in GitHub Desktop.
Sort behave steps by the execution time
# Helps to find out which one takes a lot of time to run.
awk '$NF ~ /^[0-9]\.[1-9]/ { print $NF, $0 }' behave_result.log | sort -n -r
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment