Last active
August 29, 2015 14:08
-
-
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)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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