📄 check.sh
字号:
#!/bin/sh # # Read a file containing "FREQ POL SRATE" lines and produce a# XML file containing the DVB-SI data.## Usage: ./check.sh < astra19.txt > astra19.xml## Change the DVBTUNE variable to point to your installed version of dvbtune# Change CARD to be 0 (first card), 1 (second card), 2 (third card) etcDVBTUNE=../dvbtuneCARD=0echo '<?xml version="1.0"?>'echo '<satellite>'while read x y zdo $DVBTUNE -c $CARD -f $x -p $y -s $z -idoneecho '</satellite>'
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -