19. Write command to see
make directory, destroy
and copy directory in
operating system in linux
Answers
Answered by
0
Explanation:
man -- help .
to see the command of make directory de story directory use the command : man -- help
Answered by
5
Use "mkdir directory_Name" to make directory
Use "ls" or "dir" to list the directory
You can copy the content of a folder /source to another existing folder /dest with the command
cp -a /source/. /dest/
To delete a single file, use the rm or unlink command followed by the file name:
unlink filename
rm filename
Similar questions