⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 symlink-ignore.test

📁 Rsync 3.0.5 source code
💻 TEST
字号:
#! /bin/sh# Copyright (C) 2001 by Martin Pool <mbp@samba.org># This program is distributable under the terms of the GNU GPL (see# COPYING).# Test rsync's somewhat over-featured symlink control: the default# behaviour is that symlinks should not be copied at all.. "$suitedir/rsync.fns"build_symlinks || test_fail "failed to build symlinks"# Copy recursively, but without -l or -L or -a, and all the symlinks# should be missing.$RSYNC -r "$fromdir/" "$todir" || test_fail "$RSYNC returned $?"[ -f "$todir/referent" ] || test_fail "referent was not copied"[ -d "$todir/from" ] && test_fail "extra level of directories"if is_a_link "$todir/dangling" then     test_fail "dangling symlink was copied"fiif is_a_link "$todir/relative" then    test_fail "relative symlink was copied" fiif is_a_link "$todir/absolute" then    test_fail "absolute symlink was copied"fi# 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 + -