Skip to content

Instantly share code, notes, and snippets.

@Aissaoui-Ahmed
Created July 26, 2023 17:15
Show Gist options
  • Save Aissaoui-Ahmed/e26f341207bd1fc532010eaf025bf928 to your computer and use it in GitHub Desktop.
Save Aissaoui-Ahmed/e26f341207bd1fc532010eaf025bf928 to your computer and use it in GitHub Desktop.
gitignore script
#!/bin/bash
lang=$1
if [ ! -n "${lang##+([[:space:]])}" ]; then
echo 'Please add a programming language'
fi
langUpperCase=$(echo $lang | sed 's/./\u&/')
curl -s "https://raw.githubusercontent.com/github/gitignore/main/${langUpperCase}.gitignore" --output .gitignore
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment