On 09 September, 2011 - cephas maposah sent me these 0,4K bytes: > i am trying to come up with a script that incorporates other scripts. > > eg > zfs send pool/filesystem1@100911 > /backup/filesystem1.snap > zfs send pool/filesystem2@100911 > /backup/filesystem2.snap
#!/bin/sh zfs send pool/filesystem1@100911 > /backup/filesystem1.snap & zfs send pool/filesystem2@100911 > /backup/filesystem2.snap ..? > i need to incorporate these 2 into a single script with both commands > running concurrently. /Tomas -- Tomas Forsman, [email protected], http://www.acc.umu.se/~stric/ |- Student at Computing Science, University of UmeƄ `- Sysadmin at {cs,acc}.umu.se _______________________________________________ zfs-discuss mailing list [email protected] http://mail.opensolaris.org/mailman/listinfo/zfs-discuss
