Ich kann das tun:
$ find .
.
./b
./b/foo
./c
./c/foo
Und dies:
$ find . -type f -exec cat {} \;
This is in b.
This is in c.
Aber nicht das:
$ find . -type f -exec cat > out.txt {} \;
Warum nicht?
Ich kann das tun:
$ find .
.
./b
./b/foo
./c
./c/foo
Und dies:
$ find . -type f -exec cat {} \;
This is in b.
This is in c.
Aber nicht das:
$ find . -type f -exec cat > out.txt {} \;
Warum nicht?
CodeJaeger ist eine Gemeinschaft für Programmierer, die täglich Hilfe erhalten..
Wir haben viele Inhalte, und Sie können auch Ihre eigenen Fragen stellen oder die Fragen anderer Leute lösen.