📄 to-symlink
字号:
#!/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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -