I have been following the directions to concatenate files in a directory as directed in this post: Unix: merge many files, while deleting first line of all files, but it is not working correctly. To sum, this is the command being used:
find . -name "*.extension" | xargs -n 1 tail -n +2
I attempt to attach a name to this file and redirect like this:
find . -name "*.extension" | xargs -n 1 tail -n +2 > concatenated.csv
but this only grabs the first file. Am I doing something wrong? I am very unfamiliar with these commands.