首页 > 代码库 > MAC 下的简单 SHELL 入门
MAC 下的简单 SHELL 入门
1、创建文件 .sh 文件
本例,将 sh 文件全名为 demo.sh,接下来使用随意熟悉的编辑器编辑命令就可以
2、编写 .sh 文件
#!/bin/sh
echo +----------------------------------------------------------+
echo + A tools for post csdn blogs and input the key as fllow: +
echo + digg [Digg all blogs] +
echo + views [view all blogs] +
echo + read id [read one blogs] +
echo + exports [exports all blogs] +
echo + publish filename [publish blogs] +
echo + publishes filename [bat publish blogs] +
echo + login account password [login csdn] +
echo +----------------------------------------------------------+
printf "Input your order which num is contained on above:"
read order
php do.php $order
3、运行 sh 文件
运行方式
./demo.sh
只是,在这里,可能会提示无权限,这时须要改动一下文件的权限就可以,命令为
chmod 777 run.sh
MAC 下的简单 SHELL 入门
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。