Skip to content

Instantly share code, notes, and snippets.

@ybouhjira
Created March 22, 2016 21:29
Show Gist options
  • Save ybouhjira/c6fd8414ffda32acb5b1 to your computer and use it in GitHub Desktop.
Save ybouhjira/c6fd8414ffda32acb5b1 to your computer and use it in GitHub Desktop.
Transforming artisan's routes:list ouput to a readable format
#!/bin/bash
while read line; do
if ! echo $line | grep '+----' &> /dev/null ; then
echo $line | sed -E 's/\s+/ /g' | awk -F '\\s*\\|\\s*' '{ print $0 }' | tr '|' "\n"
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment