| 1234567891011121314151617181920212223242526272829 | #!/usr/bin/env bash# This file is part of the OpenADK project. OpenADK is copyrighted# material, please see the LICENCE file in the top-level directory.set -xopt=user="-R 0:0"os=$(uname)case $os in	NetBSD|MirBSD|OpenBSD)		cmd="$@ -Mdist"		;;	Darwin)		user="-R root:"		cmd=$(echo "$@"|sed -e "s#-Hnewc#--format newc#")		;;	*)		cmd="$@ -Mdist --quiet"		;;esacif [ "$2" = "r" ];then	opt=$userficmd=$(echo "$cmd"|sed -e "s# r # #")if [ -x /usr/bin/cpio ];then	/usr/bin/cpio $cmd $optelse	/bin/cpio $cmd $optfi
 |