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

📄 cp-parents

📁 Linux下文件工具。
💻
字号:
#!/bin/sh# cp -R --parents dir-specified-with-trailing-slash/ other-dir# would get a failed assertion.if test "$VERBOSE" = yes; then  set -x  mv --versionfiumask 022pwd=`pwd`t0=`echo "$0"|sed 's,.*/,,'`.tmp;tmp=$t0/$$trap 'status=$?; cd $pwd; exec 1>&2; rm -rf $t0 && exit $status' 0trap '(exit $?); exit' 1 2 13 15framework_failure=0# Record absolute path of srcdir and cd back to current dir.cd $srcdir || framework_failure=1abs_srcdir=`pwd`cd $pwd || framework_failure=1. $srcdir/../envvar-checkmkdir -p $tmp || framework_failure=1cd $tmp || framework_failure=1. $abs_srcdir/../setgid-checkmkdir foo bar || framework_failure=1mkdir -p a/b/c d e || framework_failure=1if test $framework_failure = 1; then  echo 'failure in testing framework'  exit 1fifail=0# With 4.0.37 and earlier (back to when?), this would fail# with the failed assertion from dirname.c.cp -R --parents foo/ bar || fail=1# Exercise the make_path and re_protect code in cp.c.# FIXME: compare verbose output with expected output.cp --verbose -a --parents a/b/c d > /dev/null 2>&1 || fail=1test -d d/a/b/c || fail=1# Check that re_protect works.chmod go=w d/acp -a --parents d/a/b/c e || fail=1p=`ls -ld e/d|sed 's/ .*//'`; case $p in drwxr-xr-x);; *) fail=1;; esacp=`ls -ld e/d/a|sed 's/ .*//'`; case $p in drwx-w--w-);; *) fail=1;; esacp=`ls -ld e/d/a/b/c|sed 's/ .*//'`; case $p in drwxr-xr-x);; *) fail=1;; esac(exit $fail); exit

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -