#Touch newfile Will make an empty newfile
There is no text output. That command would create a directory / folder called "DesktopCS604".
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.
It is possible to boot MS-DOS or Linux from a USB Flash drive, but not all computers support doing it.
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.
init 6
mount
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 .
nslookup if it was a linux machine nslookup works too, but dig -x on a linux machine will get more info for you
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.
That would be a semi-contradiction; the command line would need to be already running in order to enter a command. The name of the program that actually provides the command line is called a shell. There are many different shells available for Linux, including Bash, ash, C Shell, fish, ksh, zsh, and scsh.The default command shell is /bin/sh (not /bin/bash, note).
"r" is not a standard command on Linux systems. Some systems may included or provide support for the R programming language, in which case the command would launch the "littler" program to run R commands included in the file 12.
There is no "-n" command by default in linux, though it can be an option to other commands. For example, in the make(1) command, it can be used to suppress the make program from actually doing the actions specified - it just prints out what it would have done.Answer[-n] may be what is called a "switch" typically passed to a Unix or Linux command. As mentioned above, it modifies the actions of another command. For example, in the sort(1) command, it instructs sort to sort numerically instead of alphabetically. The meaning of any given switch will typically vary from command to command so read each man page carefully before using a switch. [JMH]