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