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

📄 generator.sh

📁 一个用PHP编写的
💻 SH
字号:
#!/bin/bash# $Id: generator.sh 9537 2006-10-12 16:27:13Z nijel $## Shell script that adds a new function file using a template. Should not be called directly# but instead by template_Generator.sh and template_generator_mimetype.sh### $1: Template# $2: Filename# $3: (optional) Descriptionif [ $# == 0 ]then  echo "Please call template_generator.sh or template_generator_mimetype.sh instead"  echo ""  exit 65fifunctionupper="`echo $2 | tr [:lower:] [:upper:]`"functionlower="`echo $2 | tr [:upper:] [:lower:]`"cat $1 | sed "s/\[ENTER_FILENAME_HERE\]/$functionupper/" | sed "s/\[enter_filename_here\]/$functionlower/" >> $2.inc.phpif [ "$3" ]then    echo ""    echo "To do later:"    echo "cd ../../lang"    echo "./add_message.sh '\$strTransformation_${functionlower}' '$3'"    echo ""fiecho "Created $2.inc.php"echo ""

⌨️ 快捷键说明

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