Skip to content

Instantly share code, notes, and snippets.

@kaisugi
Created March 28, 2019 03:54
Show Gist options
  • Select an option

  • Save kaisugi/cd610b5bc0f476813719d297a401d422 to your computer and use it in GitHub Desktop.

Select an option

Save kaisugi/cd610b5bc0f476813719d297a401d422 to your computer and use it in GitHub Desktop.
PowerShell で for 文を回して一気にmkdirする
for ($i=0; $i -lt 10; $i++){
mkdir ("HOGE00" + $i)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment