answersLogoWhite

0

cp.

User Avatar

Wiki User

10y ago

What else can I help you with?

Related Questions

How do you find and remove files in Linux?

From the command line: To find the files there are a variety of utilities that you can use including: find, locate, and slocate. To remove the files use the command: rm filename.ext


How do you change the executable bit in Linux for a .exe file?

chmod +x is the command to set the executable flag in Linux but, Linux does not use exe files.


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 .


How do you remove a full directory in Linux?

To remove a directory that is full with other files or directories, use the below command. rm -rf directory


What is the difference between cut and a copy command?

a copy command would copy the contents of the selection and when you paste it somewhere else, the original contents would still be there. the contents would be available in both the original location and the new location a cut command would remove the contents of the selection and when you paste it somewhere else, the original contents would be lost. it would be available in the new location only.


Where can one gain more information about how to use the Linux terminal?

At the command prompt, type 'man [command]' (removing the brackets and substituting the command for which you need information).


What command you would use to submit jobs for printing in Linux?

lpr For example: lpr *.pdf to print all pdf files in your current directory.


What two commands can you use from the command prompt to perform the same function as the Files and Settings Transfer Wizard?

XCopy or Copy


How do you extract rar files in Linux?

1. Use the rar command. rar e <rar file name>


How do you count how many files are in a folder in Linux machine?

I suppose the easiest way to do that would be to use ls and pipe it to word count ls | wc -l the -l switch is for number of Lines for all files, including hidden files (ie .xfce4) use ls -a | wc -l hope i could help


Write a shell script that copies multiple files to a directory?

why not use the cp command to copy multiple files, i.e. cp file1 file2 file3 dir Rick


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.