I'm having trouble with unix shell script. I need to "Cat every file (in D) whose name starts with ``test'' into a file (in D) called ``bigtest''". So far I have:
cat test*.txt > bigtest.txt But its not working the way it needs to. If someone could help me, I'd really appreciate it!
cat test*.txt > bigtest.txt But its not working the way it needs to. If someone could help me, I'd really appreciate it!
Comment