Skip to content

Instantly share code, notes, and snippets.

@bkataru
Created December 22, 2024 09:48
Show Gist options
  • Select an option

  • Save bkataru/1a21809bab0c3960bfb9fc4f92837f99 to your computer and use it in GitHub Desktop.

Select an option

Save bkataru/1a21809bab0c3960bfb9fc4f92837f99 to your computer and use it in GitHub Desktop.
scaffolding for bkataru-recreations
Write-Host "Creating .vscode"
New-Item -Path .\.vscode -ItemType Directory | Out-Null
Write-Host "Creating .vscode\settings.json"
New-Item -Path .\.vscode\settings.json -ItemType File | Out-Null
Write-Host "Creating .gitignore"
New-Item -Path .\.gitignore -ItemType File | Out-Null
Write-Host "Creating README.md"
New-Item -Path .\README.md -ItemType File | Out-Null
Write-Host "Initializing empty Git repository"
Write-Host "..."
git init
Write-Host "Good to go!"
#!/bin/sh
echo "creating .vscode"
mkdir .vscode
echo "creating .vscode/settings.json"
touch .vscode/settings.json
echo "creating .gitignore"
touch .gitignore
echo "creating README.md"
touch README.md
echo "initializing empty Git repository..."
git init
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment