120k views
2 votes
Write a unix command line that uses the cat command to make an exact copy of the file data and call it data.copy

User Fog
by
7.9k points

1 Answer

2 votes
cat theFile > data.copy

That's a silly way to do it, the copy command is MUCH more appropriate:

cp -p theFile data.copy

The switch can be looked up in the man page:

man cp
User NamiW
by
7.8k points