You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
462 B
Bash

#!/usr/bin/env bash
# Seriously, why do people fuck around with other editor-specific ways
# of commenting things. You don't need no fucking "visual" mode. Vi
# already *is* visual mode (of ex). So tired of people extending Vim to
# improve it without even knowing how to use Vi in the first place. If
# you don't know how to integrate the shell, you don't know Vi. Learn it
# *before* you "extend" it.
while IFS= read -r line; do
echo "${1:-#} $line"
done