📄 dialup.sh.example
字号:
#!/bin/bash## This script is called from VDR to start/stop dialup-network## argument 1: wanted action, one of start,stop#RUN="/var/tmp/vdr.dialup.run"action="$1"case "$action" inup) up ppp0 touch "$RUN" sleep 2 ;;down) down ppp0 rm -f "$RUN" ;;esacexit 0
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -