In linux is there any way to present the output of 2 different commands which refer to the same object but give different data in an interlaced format without scripting.
To explain what I mean When I say interlaced format consider the following.
ls --full-time
will show the full time stamp and folder name of each child folder in the current directory.
du -sh ./*
will show the total size and name of every child folder in the current directory.
If I was to run one command followed by the other I would get all of the sizes each on their own line with a folder name next to each size and then I would get all of the dates each accompanied by a folder name on their own line.
By "interlacing" I mean the first line out output for each command is presented, preferably on one line. Then the second line of output for each command is presented in the same fashion (ect). I.E all this data would be displayed so that the date, size and name of each folder all appear on the same line despite the fact that not all of this data is provided by the same command. (I dont mind if the folder name is displayed twice since that is provided by both commands).
statcmd (which stat, it should be there). Theman statto see how to use itsprintfargs. Good luck.