Let's say I have the following subdirectories
./a/, ./b/, ./c/, ...
That is, in my current working directory are these subdirectories a/, b/ and c/ , and in each of these subdirectories are files. In directory
a/
is the file
a.in
, in directory
b/
is the file
b.in
and so forth.
I now want to copy each
.in
file to a
.out
file, that is,
a.in
to
a.out
and
b.in
to
b.out
, and I want them to reside in the directories they were copied from. So
a.out
will be found in directory
a/
.
I've tried various different approaches, such as
find ./ -name '*.in'|cp * *.out
which doesn't work because it thinks
*.out
is a directory. Also tried
ls -d */ | cd; cp *.in *.out
but it that would list the subdirectories, go into each one of them, but won't let cp do it's work (which still doesn't work)
The
find ./ -name '*.in'
command works fine. Is there a way to pipe arguments to an assignment operator? E.g.
find ./ -name '*.in'| assign filename=|cp filename filename.out
where
assign filename=
gives filename the value of each .in file. In fact, it would be even better if the assignment could get rid of the .in file extension, then instead of getting
a.in.out
we would get the preferred
a.out
Thank you for your time.