Skip to content

Instantly share code, notes, and snippets.

@ankurcha
Created August 28, 2014 22:00
Show Gist options
  • Select an option

  • Save ankurcha/a164393534a8b489fe80 to your computer and use it in GitHub Desktop.

Select an option

Save ankurcha/a164393534a8b489fe80 to your computer and use it in GitHub Desktop.
Function to download and extract cookbook
function knife_dl() {
local packages="$@"
cd ~/chef/cookbooks
for c in ${packages}; do
knife cookbook site download ${c};
tar zxf ${c}*.tar.gz;
rm ${c}-*.tar.gz;
done
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment