Jan 12, 2006 #1 ogniemi Technical User Joined Nov 7, 2003 Messages 1,041 Location PL mknfsexp -d /backup -c 10.1.1.2 how to export for whole 10.1.1.0/24 ??? i would like to avoid coma separating all addresses from the network in mknfsexp command line...
mknfsexp -d /backup -c 10.1.1.2 how to export for whole 10.1.1.0/24 ??? i would like to avoid coma separating all addresses from the network in mknfsexp command line...
Jan 12, 2006 #2 KenCunningham Technical User Joined Mar 20, 2001 Messages 8,475 Location GB Make a text file list of all addresses and use this to pass to the command? Upvote 0 Downvote
Jan 12, 2006 #3 KenCunningham Technical User Joined Mar 20, 2001 Messages 8,475 Location GB Something like: while read line do mknfsexp -d /backup -c $line done < list.txt Upvote 0 Downvote