command to connect the shared folder

Hello,

I am using unix through cygwin application in my office machine and here i encounter a problem which i want copy certain big files from a shared folder

shared folder--\\Parwvm000154\docs

to my local machine c:/

I'm really honor if i clarified with the command.

Regards
Thelak

Here is a command to copy everything in the shared docs folder (and all sub-folders under docs) to a docs directory on you c:\ drive

 cp -r //Parwvm000154/docs/ /cygdrive/c/docs

Or to just copy a single file, note quotes are needed if your filename contains spaces. Also note c:\docs directory needs to already exist

cp "//Parwvm000154/docs/some_file"  /cygdrive/c/docs/