folder replication between windows and unix


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers folder replication between windows and unix
# 1  
Old 03-27-2007
folder replication between windows and unix

1. How do i replicate folders between windows and unix.

if i create a subfolder under NDC in windows, it should automatically create a
subfolder in unix as well.

windows nt

/NDC/SUBFOLDERS


hp ux

/NDC/SUBFOLDERS

2. How do i ftp a file from windows to unix using automated process.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Windows & DOS: Issues & Discussions

Transfer of zipped folder from windows desktop to UNIX server

Hi all, I'm a newbie to unix. My requirement is to create an automation script which will transfer a zipped folder from my/remote desktop to an unix server. Tools lik WinSCP shouldnt be used. No manual moving. I use putty to connect to server. I couldnt find any help on this topic. Should i use... (3 Replies)
Discussion started by: sherin22
3 Replies

2. Shell Programming and Scripting

BatchScript/Unix shell Script to check folder in Windows server

Hi, It will be great help if any of them can provide or tell which scripting is possible to write for checking folder exists or not in Windows server from Unix/Windows machine. If folder doesn't exist then need to create the folder through script and copy the files. It is on very... (1 Reply)
Discussion started by: prakashchakra7
1 Replies

3. Shell Programming and Scripting

FTP from Unix Shell script to Windows Shared folder ?

Hi Before Posting my query in this forum, I have gone through various similar postings to get some idea on ftp and how to do that from unix shell script to windows server. My question is related to FTP'ing from Unix to windows shared folder My basic question is 1. Is it possible to do FTP... (4 Replies)
Discussion started by: shekharjchandra
4 Replies

4. Shell Programming and Scripting

Recursive Replication of Unix folders to Windows

Requirements: ftp files recursively from unix to windows. Replicate directory paths on unix (source) to windows (destination) and place files in their respective folders. There are no set number of files per directory nor fix number of dirA or dirB etc.... Source OS: Solaris... (5 Replies)
Discussion started by: mlv_99
5 Replies

5. Windows & DOS: Issues & Discussions

How can I upload a zip folder on a unix path from my windows folder?

Hello, I am an amature at UNIX commands and functionality. Please could you all assist me by replying to my below mentioned querry : How can I upload a zip folder on a unix path from my windows folder? Thanks guys Cheers (2 Replies)
Discussion started by: ajit.yadav83
2 Replies

6. UNIX for Dummies Questions & Answers

create folder in windows from unix while FTP

Hi, I would like to know if it's possible to create a folder in a Windows Server while running a ftp script in Unix. The idea is to create a script that searches for different files in folders, and when the file is found, take the path of that file and create it to Windows and ftp the file to... (0 Replies)
Discussion started by: Metalero de Oz
0 Replies

7. HP-UX

HP Unix replication solution

Hi, I looking to setup HP Unix to HP Unix replication as plan of business continuity. The setup can be active passive or active active. Anyone can give me some idea what solution able to perform that? Thanks (3 Replies)
Discussion started by: ufo_999
3 Replies

8. UNIX for Dummies Questions & Answers

How can I view a Windows 2003 folder in Unix?

Is it possible to do something like this? Have a folder shared on a Windows machine and then be able to view it under a Unix server? Sort of like a reverse Samaba share? (5 Replies)
Discussion started by: LordJezo
5 Replies

9. UNIX for Dummies Questions & Answers

How can i get my windows 98 folder from unix?

Haya mates, I have 2 seperate physical drives ie c:\ with windows 98 and D:\ with Linux mandrake installed. I need to have access to certain directories in my windows d drive how can i manage that? best regards abdul ::email removed:: (2 Replies)
Discussion started by: abdul
2 Replies

10. UNIX for Dummies Questions & Answers

Unix System Total Replication

Is there any way to totally replicate a unix system from one hardisk to another? And be able to swap the hardisk and restart the system without any error? TQ (4 Replies)
Discussion started by: nuraman
4 Replies
Login or Register to Ask a Question
NDC(3pm)						User Contributed Perl Documentation						  NDC(3pm)

NAME
Log::Log4perl::NDC - Nested Diagnostic Context DESCRIPTION
Log::Log4perl allows loggers to maintain global thread-specific data, called the Nested Diagnostic Context (NDC). At some point, the application might decide to push a piece of data onto the NDC stack, which other parts of the application might want to reuse. For example, at the beginning of a web request in a server, the application might decide to push the IP address of the client onto the stack to provide it for other loggers down the road without having to pass the data from function to function. The Log::Log4perl::Layout::PatternLayout class even provides the handy %x placeholder which is replaced by the blank-separated list of elements currently on the stack. This module maintains a simple stack which you can push data on to, query what's on top, pop it off again or delete the entire stack. Its purpose is to provide a thread-specific context which all Log::Log4perl loggers can refer to without the application having to pass around the context data between its functions. Since in 5.8.0 perl's threads don't share data only upon request, global data is by definition thread-specific. Log::Log4perl::NDC->push($text); Push an item onto the stack. If the stack grows beyond the defined limit ($Log::Log4perl::NDC::MAX_SIZE), just the topmost element will be replated. This is typically done when a context is entered. Log::Log4perl::NDC->pop(); Discard the upmost element of the stack. This is typically done when a context is left. my $text = Log::Log4perl::NDC->get(); Retrieve the content of the stack as a string of blank-separated values without disrupting the stack structure. Typically done by %x. If the stack is empty the value "[undef]" is being returned. Log::Log4perl::NDC->remove(); Reset the stack, remove all items. Please note that all of the methods above are class methods, there's no instances of this class. COPYRIGHT AND LICENSE
Copyright 2002-2009 by Mike Schilli <m@perlmeister.com> and Kevin Goess <cpan@goess.org>. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.10.1 2010-07-21 NDC(3pm)