Update 2024-02-14 07:51 OpenBSD/amd64-x13
This commit is contained in:
12
.bin/OLD/mcat
Executable file
12
.bin/OLD/mcat
Executable file
@@ -0,0 +1,12 @@
|
||||
#!/bin/sh
|
||||
|
||||
for foo in in $@
|
||||
do
|
||||
case $foo in
|
||||
*.gz) zcat $foo; ;;
|
||||
*.tgz) zcat $foo; ;;
|
||||
*.bz2) bzcat $foo; ;;
|
||||
*.tbz2) bzcat $foo; ;;
|
||||
*) cat $foo; ;;
|
||||
esac
|
||||
done
|
||||
Reference in New Issue
Block a user