📄 maketar
字号:
#!/bin/sh# Chapter 12 - Using options and arguments# This is the first version of the mytar scriptcase $0 in *listtar) TARGS="-tvf $1" ;; *maketar) TARGS="-cvf $1.tar $1" ;; *) echo "Usage: $0 [file|directory]" exit 0 ;;esactar $TARGS
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -