vote up 0 vote down star

The title is rather more simplified than the functionality I am trying to express in a script.

I have a one-level deep directory tree (much bigger than example) which contain various content, although only two particular files are of interest to me. A file called 'current' and another called 'revisions'

- foo
   |
   |-> current

- bar
   |
   |-> current
   |-> revisions

- baz
   |
   |-> not-affected

The script in mind would be triggered from the parent directory to foo/bar/baz and it would perform the following

  1. Scan all subdirectories
  2. When it finds a directory containing 'current' it will

    1. Append the content of 'current' onto revisions 'cat ${pwd}/current >> ${pwd}/revisions '
  3. Directories not containing a file named 'current' are to remain unaffected
flag

47% accept rate

2 Answers

vote up 1 vote down check

If it's one level deep, this should work:

for c in */current; do cat ${c} >> ${c%%current}revisions; done
link|flag
vote up 1 vote down
for i in */current; do
  cat "${i}" >> "{i%/*}/revisions"
done

Note that this will create revisions if it doesn't exist.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.