After executing the following command will the contents of t
After executing the following command, will the contents of the file called inside be the same as the contents of the file called outside?
cat > inside < outside
You will have to create a file called outside to test this.
Solution
cat >inside<outside
After executing the above command contents of file outside is copied to file inside.
Therefore content of file inside is same as the contents of file outside.
