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

📄 extract.sh

📁 gtk是linux一款强大的夸平台的图形化开发工具
💻 SH
字号:
#! /bin/sh# extract - extract C source files from GTK Tutorial# Copyright (C) Tony Gale 1998# Contact: gale@gtk.org## extract.awk command Switches:# -c : Just do checking rather than output files# -f <filename> : Extract a specific file# -d : Extract files to current directory if [ -x /usr/bin/gawk ]; then gawk -f extract.awk ../docs/gtk_tut.sgml $1 $2 $3 $4 $5else if [ -x /usr/bin/nawk ]; then  nawk -f extract.awk ../docs/gtk_tut.sgml $1 $2 $3 $4 $5 else  if [ -x /usr/bin/awk ]; then   awk -f extract.awk ../docs/gtk_tut.sgml $1 $2 $3 $4 $5  else    if [ -x /bin/awk ]; then    awk -f extract.awk ../docs/gtk_tut.sgml $1 $2 $3 $4 $5   else    echo "Can't find awk... please edit extract.sh by hand"   fi  fi fifi

⌨️ 快捷键说明

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