dotfiles/scripts/mksh
rpriven 5b6af65def
Organize scripts and clean up dotfiles
Changes:
- Added 80+ scripts with organized structure
  - payloads/ for third-party pentesting tools
  - pentesting/ for custom security scripts
  - Daily drivers remain flat for fast access
- Converted wes() function to proper script
- Removed .sh extensions from pentesting scripts
- Cleaned up aliases (removed 31 redundant lines)
- Added kanata/, build artifacts to gitignore
- Removed old fre.sh scripts and empty a.out
- Updated configs: helix, tmux, zsh, ulauncher, redshift

Security: All sensitive data excluded via gitignore
2025-11-07 14:48:21 -07:00

24 lines
440 B
Bash
Executable file

#!/usr/bin/env bash
set -euo pipefail
# Script Name: mksh
# Description: Rapidly create executable bash scripts with template
# Source: https://evanhahn.com/scripts-i-wrote-that-i-use-all-the-time/
if [[ $# -ne 1 ]]; then
echo 'mksh takes one argument' >&2
exit 1
elif [[ -e "$1" ]]; then
echo "$1 already exists" >&2
exit 1
fi
cat > "$1" << 'EOF'
#!/usr/bin/env bash
set -euo pipefail
EOF
chmod +x "$1"
"${EDITOR:-vim}" "$1"