chmod.test
来自「Rsync 3.0.5 source code」· TEST 代码 · 共 31 行
TEST
31 行
#! /bin/sh# Copyright (C) 2004 by Wayne Davison <wayned@samba.org># This program is distributable under the terms of the GNU GPL (see# COPYING).# Test that various read-only and set[ug]id permissions work properly,# even when using a --temp-dir option (which we try to point at a# different filesystem than the destination dir).. "$suitedir/rsync.fns"hands_setupchmod 440 "$fromdir/text"chmod 500 "$fromdir/dir/text"e="$fromdir/dir/subdir/foobar.baz"chmod 6450 "$e" || chmod 2450 "$e" || chmod 1450 "$e" || chmod 450 "$e"e="$fromdir/dir/subdir/subsubdir/etc-ltr-list"chmod 2670 "$e" || chmod 1670 "$e" || chmod 670 "$e"# First a normal copy.runtest "normal copy" 'checkit "$RSYNC -avv \"$fromdir/\" \"$todir\"" "$fromdir" "$todir"'# Then we update all the files.runtest "update copy" 'checkit "$RSYNC -avvI --no-whole-file \"$fromdir/\" \"$todir\"" "$fromdir" "$todir"'# The script would have aborted on error, so getting here means we've won.exit 0
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?