Combina file dal terminale

0

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?

    
posta JawSaw 23.03.2018 - 12:32
fonte

1 risposta

3

Devi "echo" le tue parole nei file.

echo test >test.md
echo hello >hello.md
cat test.md hello.md >combined.md
    
risposta data 23.03.2018 - 12:45
fonte

Leggi altre domande sui tag