I would like to concatenate the following table:
A
B
C
D
E
...
I am currently using:
find "PATH" name "*.txt" -exec cat {} + >> "PATH/output.txt"
My problem is that this command concatenate from A to X; indeed I would like to concatenate from X to A. Does anyone knows how to do that? Thanks