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

📄 file-type

📁 实战Linux编程的原代码,希望对学驱动的人能有所帮助
💻
字号:
#!/bin/sh# contrast ls -F and ls --indicator-style=file-typeif test "$VERBOSE" = yes; then  set -x  ls --versionfi. $srcdir/../envvar-check. $srcdir/../lang-defaultpwd=`pwd`t0=`echo "$0"|sed 's,.*/,,'`.tmp; tmp=$t0/$$trap 'status=$?; cd $pwd; chmod -R u+rwx $t0; rm -rf $t0 && exit $status' 0trap '(exit $?); exit $?' 1 2 13 15framework_failure=0mkdir -p $tmp || framework_failure=1cd $tmp || framework_failure=1mkdir subcd submkdir dirtouch regular executablechmod a+x executableln -s regular slink-regln -s dir slink-dirln -s nowhere slink-danglemknod block b 20 20 2> /dev/null && block="block"mknod char c 10 10 2> /dev/null && char="char"mkfifo fifocd ..if test $framework_failure = 1; then  echo "$0: failure in testing framework" 1>&2  (exit 1); exit 1fifail=0ls -1F sub > out || fail=1cat <<EOF > exp$block${char}dir/executable*fifo|regularslink-dangle@slink-dir@slink-reg@EOFsed 's/\*//' exp > exp2ls -1 --indicator-style=file-type sub > out2 || fail=1cmp out exp || fail=1test $fail = 1 && diff out exp 2> /dev/nullcmp out2 exp2 || fail=1test $fail = 1 && diff out2 exp2 2> /dev/nullls --color -1F sub > out3 || fail=1cat <<EOF > exp3$block${char}dir/executable*fifo|regularslink-dangle@slink-dir@slink-reg@EOF(exit $fail); exit $fail

⌨️ 快捷键说明

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