|
|
|
|
|
by bravetraveler
631 days ago
|
|
Check out my high-overhead replacement for 'cat' in BASH ~ $ type cat
cat is a function
cat ()
{
while read; do
printf '%s\n' "$REPLY";
done < "$@"
}
It probably butchers things. Why? I got bored in a meeting and someone accidentally posted 'cat' to Teams |
|