10 lines
251 B
Bash
10 lines
251 B
Bash
#!/bin/bash
|
|
|
|
# Ever pasted "$ somecommand" into the terminal and gotten this error?
|
|
# -bash: $: command not found
|
|
|
|
# Begone, silly errors! Lazy copy + paste forever!! ETCETERA!!!!
|
|
|
|
echo 'Quit pasting in commands from the internet, you lazy bum.'
|
|
"$@"
|