8 lines
123 B
Bash
Executable File
8 lines
123 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# cat given files prefixed with their filenames.
|
|
# named-cat.sh file1.txt file2.txt
|
|
|
|
tail -n +1 "$@"
|
|
|