7 lines
111 B
Bash
Executable File
7 lines
111 B
Bash
Executable File
#!/usr/bin/env zsh
|
|
read -p "Are you sure? [y/N]: " -n 1 -r
|
|
echo
|
|
if [[ $REPLY =~ ^[Yy]$ ]]; then
|
|
exec "$@"
|
|
fi
|