Re: Need help accessing multiple files' content at the same time

2021-05-07 Thread @lbutlr
On 07 May 2021, at 05:32, Christopher Stone wrote: > # Find files, concatenate their contents, send result to BBEdit. > find -E . -type f \( ! -name ".*" \) -exec sed -n '1,$p' {} \; | bbedit OK, two questions. 1) why -E? 2) '1,$p'? Where/what is $p? -- When men talk to their friends,

Re: Need help accessing multiple files' content at the same time

2021-05-07 Thread Christopher Stone
On 05/06/2021, at 10:06, Howard mailto:leadwithlo...@gmail.com>> wrote: > Patrick, your way of concatenating individual files works well. > > I have a folder that contains both folders whose contents I would like to > include in the concatenation as well as separate individual files. Is there a