Ho creato due file
$ 'test' > test.md $ 'hello' > hello.md
prova a combinarli
cat test.md hello.md > combined.md
Sfortunatamente, il nuovo combinato.md è vuoto.
Come combinare file dal terminale con i comandi?
Devi "echo" le tue parole nei file.
echo test >test.md echo hello >hello.md cat test.md hello.md >combined.md
Leggi altre domande sui tag terminal