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?

Respuesta :

Answer:

The required command is cat > Meeting

Step-by-step 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