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

📄 ex24.sh

📁 一本完整的描述Unix Shell 编程的工具书的所有范例
💻 SH
字号:
#!/bin/bash# Faxing (must have 'fax' installed).EXPECTED_ARGS=2E_BADARGS=65if [ $# -ne $EXPECTED_ARGS ]# Check for proper no. of command line args.then   echo "Usage: `basename $0` phone# text-file"   exit $E_BADARGSfiif [ ! -f "$2" ]then  echo "File $2 is not a text file"  exit $E_BADARGSfi  fax make $2              # Create fax formatted files from text files.for file in $(ls $2.0*)  # Concatenate the converted files.                         # Uses wild card in variable list.do  fil="$fil $file"done  efax -d /dev/ttyS3 -o1 -t "T$1" $fil   # Do the work.# As S.C. points out, the for-loop can be eliminated with#    efax -d /dev/ttyS3 -o1 -t "T$1" $2.0*# but it's not quite as instructive [grin].exit 0

⌨️ 快捷键说明

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