exp, mknod [message #63691] |
Thu, 28 October 2004 05:34 |
sidd
Messages: 130 Registered: May 2003
|
Senior Member |
|
|
# Make a pipe
mknod expdat.dmp p # or mkfifo pipe
# Start compress sucking on the pipe in background
compress < expdat.dmp > expdat.dmp.Z &
# Wait a second or two before kicking off the export
sleep 5
# Start the export
exp scott/tiger file=expdat.dmp
Will this code work on HP 11I unix as is? what is the risk involved in using mknod?
and how mknod works? Do i need to make sure anything before using this mknod command?
can anyone explain me please
thanks
|
|
|