to-symlink

来自「实战Linux编程的原代码,希望对学驱动的人能有所帮助」· 代码 · 共 47 行

TXT
47
字号
#!/bin/sh# Make sure that the copying code used in an inter-partition# move unlinks a destination symlink before opening it.if test "$VERBOSE" = yes; then  set -x  mv --versionfi. $srcdir/setup. $srcdir/../envvar-checkif test -z "$other_partition_tmpdir"; then  exit 77firem_file="$other_partition_tmpdir/file"rem_symlink="$other_partition_tmpdir/symlink"file=to-sym-$$fail=0trap 'rm -fr $file $other_partition_tmpdir; exit $fail' 0 1 2 3 15framework_failure=0rm -f $file || framework_failure=1echo local > $file || framework_failure=1echo remote > $rem_file || framework_failure=1ln -s $rem_file $rem_symlink || framework_failure=1if test $framework_failure = 1; then  echo 'failure in testing framework'  exit 1fi# This mv command should succeed, unlinking the symlink# before copying.mv $file $rem_symlink || fail=1# Make sure $file is gone.test -f $file && fail=1# Make sure $rem_file is unmodified.test `cat $rem_file` = remote || fail=1exit $fail

⌨️ 快捷键说明

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