I want to put TextA to the beginning of TextB by
cat TextA A TextB
The problem is that I do not know how to refer to the first and second parameters, that is TextA and TextB in the following script called A:
#!/bin/bash
cat TextA > m1
cat TextB > m2
cat m1 m2 > TextB
where m1 and m2 are temporary files.
How can you refer to the two files in the shell script?