从一台HP-UX机器copy文件(夹)到另一台HP-UX机器的方法
发表于 : 2012年 3月 12日 20:56 星期一
Copy files/trees from one server to another
其中:
$1 = absolute or ./ prefixed path to source fs or directory tree
$2 = network name of target machine
$3 = target directory root node on target machine
前提是.rhosts文件需要提前配置在两台机器的root $HOME文件夹下,每个.rhosts文件必须含有an entry pointing to the other machine.
代码: 全选
find $1 -print | cpio -ocx | remsh $2 -l root "cd $3; cpio -icmuxd"
$1 = absolute or ./ prefixed path to source fs or directory tree
$2 = network name of target machine
$3 = target directory root node on target machine
前提是.rhosts文件需要提前配置在两台机器的root $HOME文件夹下,每个.rhosts文件必须含有an entry pointing to the other machine.