Current Path : /compat/linux/proc/68247/cwd/usr/src/usr.sbin/mtree/test/ |
FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64 |
Current File : //compat/linux/proc/68247/cwd/usr/src/usr.sbin/mtree/test/test02.sh |
#!/bin/sh # # Copyright (c) 2003 Dan Nelson # All rights reserved. # # Please see src/share/examples/etc/bsd-style-copyright. # # $FreeBSD: release/9.1.0/usr.sbin/mtree/test/test02.sh 121798 2003-10-31 13:39:19Z phk $ # set -e TMP=/tmp/mtree.$$ rm -rf ${TMP} mkdir -p ${TMP} ${TMP}/mr ${TMP}/mt touch -t 199901020304 ${TMP}/mr/oldfile touch ${TMP}/mt/oldfile mtree -c -p ${TMP}/mr > ${TMP}/_ mtree -U -r -p ${TMP}/mt < ${TMP}/_ > /dev/null x=x`(cd ${TMP}/mr ; ls -l 2>&1) || true` y=x`(cd ${TMP}/mt ; ls -l 2>&1) || true` if [ "$x" != "$y" ] ; then echo "ERROR Update of mtime failed" 1>&2 rm -rf ${TMP} exit 1 fi rm -rf ${TMP} exit 0