answersLogoWhite

0

#Touch newfile Will make an empty newfile

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

What is the output of mkdir DesktopCS604 in Linux?

There is no text output. That command would create a directory / folder called "DesktopCS604".


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.


Would it be difficult to create a portable DOS or Command-line Linux variant?

It is possible to boot MS-DOS or Linux from a USB Flash drive, but not all computers support doing it.


Which task can you perform with the dd command?

There are lots of tasks you can perform with the dd command. The most common would be to create an image file from a disk or partition. Another use would be to create an empty file of an arbitrary size.


What command would cleanly reboot your Linux box?

init 6


How do you create a UDF-ISO image in Linux?

To create a UDF-ISO image in Linux, you can use the mkisofs or genisoimage command with the -udf option. For example, the command would look like this: mkisofs -o output.iso -udf /path/to/directory. This command generates a UDF-compliant ISO image named output.iso from the specified directory. Make sure to have the necessary tools installed, which are often available in the default package repositories.


What command prompt would you use in Linux to see filesystems in use?

mount


What Linux command is used to zip only a subdirectory?

In order to zip a subdirectory in Linux you would use the zip command with the recursive flag to specify that it should add all files under that directory into the zip file. The command would then be zip -r .zip .


What command would you use to test Dns name resolution at a Windows command prompt?

nslookup if it was a linux machine nslookup works too, but dig -x on a linux machine will get more info for you


What is the use of MD command?

The MD command, short for "Make Directory," is used in command-line interfaces, such as Windows Command Prompt and Unix/Linux shell, to create a new directory (or folder). By specifying a name after the command, users can establish a structured hierarchy for file organization. For example, typing md new_folder would create a directory named "new_folder" in the current location. It can also create multiple directories at once if multiple names are provided.


What command would be used to get information on the options used by a Linux command?

To get information on the options used by a Linux command, you can use the man command followed by the command name, like this: man [command]. This will display the manual page for the command, detailing its options and usage. Alternatively, you can often use the --help option with the command (e.g., [command] --help) to get a brief summary of options and usage.


What command is used to create a suddirectory and change the current directory and to remove a subdirectory?

If for example we wanted to make i subdirictory called foo in Linux or UNIX it you use mkdir foo to change into it you would use CD foo to remove the directory rmdir foo but this will only work if the directory is empty to remove the directory called foo when it is not empty use rm -rf foo but please be sure this is what you really want to do.