answersLogoWhite

0

cat inputfile | tee file1 | tee file2 | tee file3 | tee file4 > file5

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

How do you make a new command in Unix?

first, make a file. in the file you type in the command's name. an example would be the command date. name the file what you want to call that command. when you use the command, type in cat filename and the computer will do the command.


What command do you use to make a file?

create


To make a copy of a file use the command?

You can use cp command to make a copy of a file. cp <file 1> <file 2> If you want to make a copy of the entire directory then use the recursive option cp -r <dir 1> <dir 2>


Command used to make a copy of the original company file?

copy file filecopy


How do you insert a command into a CSS file?

You cannot insert a command into CSS, you can make styles that happen in HTML.


What is the command to mak the myfiletxt a hidden system file?

To make "myfiletxt" a hidden system file in Windows, you can use the Command Prompt. The command is: attrib +h +s myfiletxt. This command adds the hidden attribute (+h) and the system attribute (+s) to the file, making it hidden from normal view and designated as a system file.


If a file header is lost or corrupted and an application needs that header to read the file how can you recover the contents of the file?

Not possible. Always make backup copies.


What ms dos command will make the file system.doc read only?

make systemdoc ro


How do you make multiple copies of data that has been copied to the clipboard?

Press the command to copy it into documents that can accept the type of information, such as control V or command v.


What is The FTP command to download a single file is?

The FTP command to download a single file is get. You would typically use it in the FTP command-line interface after connecting to the FTP server. For example, you would type get filename.ext to download the specified file to your local directory. Make sure you are in the correct directory on the FTP server where the file is located before executing the command.


How do you make a command on Ubuntu 9.04?

Anything can be made into a command on a Linux system. The steps are easy. First, using any text editor (vim, emacs, etc.) create a text file. Put anything you want to do in this file. Save the file. Make sure the file you just created has read and execute permissions (chmod). That's it! Now you have a command that you can execute in Linux.


How do you make a batch file wait?

Use the 'pause' command. The pause command will make a "press any key to continue..." message. If you don't want this to show up, use "pause >nul". This will make the batch file wait without the pause message.