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

📄 misc

📁 实战Linux编程的原代码,希望对学驱动的人能有所帮助
💻
字号:
#!/bin/shtmp_in=dd-in.$$tmp_out=dd-out.$$if test "$VERBOSE" = yes; then  set -x  dd --versionfitest_failure=0echo data > $tmp_in || test_failure=1if test $test_failure = 1; then  echo 'failure in testing framework'  exit 1fidd if=$tmp_in of=$tmp_out > /dev/null 2>&1 || fail=1cmp $tmp_in $tmp_out || fail=1rm -f $tmp_in $tmp_outexit $fail

⌨️ 快捷键说明

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