answersLogoWhite

0

create

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.


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>


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.


How do you make a batch file without it closing immediately when you start it or use a command?

YES


How can I use ffmpeg to convert a WMV file to an MP4 file?

You can use ffmpeg to convert a WMV file to an MP4 file by running a command in the terminal or command prompt. The command typically looks like this: ffmpeg -i inputfile.wmv outputfile.mp4 This command will convert the WMV file named "inputfile.wmv" to an MP4 file named "outputfile.mp4".


How can I use ffmpeg to convert an mp4 file to a webm file?

You can use ffmpeg, a command-line tool, to convert an mp4 file to a webm file by running the following command: "ffmpeg -i input.mp4 output.webm". This command will take the input.mp4 file and convert it to output.webm in the webm format.


How do you make a batch file that talks to you?

1. Click on the Start Menu 2. Click on the Run command 3. Type in: cmd 4. Type in: help This should help you a lot with commands. Use: help <command> for details on a certain command. Example: help echo Use the echo command to make the batch file talk. Example is: @echo echo "This is what they will see" Make sure to include the ""s.


What command in Windows RE can you use to rebuild the BCD file?

Use the command line: Bootrec/rebuildBCD


What is the syntax of the 'make' command?

There are several variants of the 'make' command, and you should use the 'man make' or 'info make' command to see what your platform is using. In general, the make command requires a makefile, sometimes a target, and can use optional variable parameters, such as: make -f myMake.mk which is the simple version of calling 'make'. The targets and dependencies of the myMake.mk are in that file. The complexities of using the 'make' command with targets, etc., is too complex to answer here.


What command would you use to create an empty text file in Linux?

#Touch newfile Will make an empty newfile


What is the Linux command to create a file named security?

As files can be of any number of types, there is no single command that will do this. You would use the program associated with that file type to create a file. If you wanted to create a "blank" file, that has no content and uses no space, use the command touch filename.


When I run a batch file I can open another one in it but how do I make it so that when I open it the rest of the file doesn't exacute until the opened one exits?

Use the CALL command. Enter "CALL /?" at the command prompt for details.