文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>shell中调用另外的脚本文件的两种方法

shell中调用另外的脚本文件的两种方法

时间:2010-03-28  来源:star_zhang

脚本 first (测试示例1)
first #!/bin/bash
echo 'your are in first file'

方法一:使用source
#!/bin/bash
echo 'your are in second file'
source first

方法二:使用.
#!/bin/bash
echo 'your are in second file'
. first
  方法三:使用sh #!/bin/bash
echo 'your are in second file'
sh  first
相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载