Skip to content

Instantly share code, notes, and snippets.

@ottonet
Last active August 29, 2015 14:08
Show Gist options
  • Save ottonet/6f622ce1ec3d2d622e55 to your computer and use it in GitHub Desktop.
Save ottonet/6f622ce1ec3d2d622e55 to your computer and use it in GitHub Desktop.
Generate Modman file for Magento (works great for templates, less great for modules/extensions)
(declare -a tt && tt=( app/design app/code app/etc app/locale skin/adminhtml skin/frontend ) &&\
for t in "${tt[@]}"; do tree -fi -L 3 --noreport $t | awk 'NR > 2 { print $0 " " $0 }'; done)\
> modman
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment