📄 hands.test
字号:
#!/bin/sh# Copyright (C) 1998, 1999 by Philip Hands <phil@hands.com># Copyright (C) 2001, 2002 by Martin Pool <mbp@samba.org>## This program is distributable under the terms of the GNU GPL (see COPYING). "$suitedir/rsync.fns"hands_setup# Main script starts hereruntest "basic operation" 'checkit "$RSYNC -av \"$fromdir/\" \"$todir\"" "$fromdir/" "$todir"'ln "$fromdir/filelist" "$fromdir/dir"runtest "hard links" 'checkit "$RSYNC -avH \"$fromdir/\" \"$todir\"" "$fromdir/" "$todir"'rm "$todir/text"runtest "one file" 'checkit "$RSYNC -avH \"$fromdir/\" \"$todir\"" "$fromdir/" "$todir"'echo "extra line" >> "$todir/text"runtest "extra data" 'checkit "$RSYNC -avH --no-whole-file \"$fromdir/\" \"$todir\"" "$fromdir/" "$todir"'cp "$fromdir/text" "$todir/ThisShouldGo"runtest " --delete" 'checkit "$RSYNC --delete -avH \"$fromdir/\" \"$todir\"" "$fromdir/" "$todir"'cd "$tmpdir"rm -rf to from/*dir# Do the real copy, touch up the parent-dir's time, and then check the copy.$RSYNC -av from/* to/checkit "$RSYNC -av --exclude='*' from/ to/" "$fromdir" "$todir"# The script would have aborted on error, so getting here means we've won.exit 0
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -