|
ptmkdirParallel mkdirDescriptionptmkdir makes directories on specified hosts.
Command Line Argumentsptmkdir [-m <machine_file>|-M <machine_list>] [-p] <dir1> [<dir2> <dir3>...]
Environment Variables
ExamplesTo create the directory "mydir" on the machines specified in the file "destination_machines" use
ptmkdir -m destination_machines mydir To make the same directory, specifying the machines on the command line, use
ptmkdir -M "host1 host2 host3" mydir To create the directory "mydir/mysubdir", ensuring that mydir exists, use
ptmkdir -m destination_machines -p mydir/mysubdir
NotesThe mkdir(1) option '-m' is not supported because it conflicts with the machine file option. To get the same result, use ptmkdir, followed by ptchmod(1).
See Alsomkdir(1) ptchmod(1), SUT(1)
|