226k views
5 votes
Your boss drops by your office in a hurry to ask you to attend a meeting at 10:30 on Friday morning and you can’t find a pen to make a note as a reminder. What Linux command can you use to make a quick note to store in a file called Meeting?

User ScottyDont
by
5.5k points

1 Answer

4 votes

Answer:

The required command is cat > Meeting

Explanation:

Consider the provided information.

You need to attend a meeting at 10:30 on Friday morning and you can’t find a pen to make a note as a reminder.

In Linux "cat" command is the command which used most significantly.

cat refers to the concatenate.

With the help of this command we can create single or multiple files.

Thus, the command can you use to make a quick note is:

cat > Meeting

Hence, the required command is cat > Meeting

User Fadhly Permata
by
6.0k points