Skip to content

Instantly share code, notes, and snippets.

@sweeneyrobb
Created July 1, 2015 20:02
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sweeneyrobb/713f8c325536b123e706 to your computer and use it in GitHub Desktop.
Save sweeneyrobb/713f8c325536b123e706 to your computer and use it in GitHub Desktop.
Creating a boilerplate Jekyll directory.
$folders = @("_drafts", "_includes", "_layouts", "_posts", "_data")
$folders | %{ New-Item -Name $_ -ItemType Directory }
$files = @("_config.yml")
$files | %{ New-Item -Name $_ -ItemType File }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment