当前位置: 首页 > news >正文

襄樊门户网站建设怎么创建网站链接

襄樊门户网站建设,怎么创建网站链接,易语言可以做网站,免费网页下载1、source source a.sh 在当前shell内去读取、执行a.sh,而a.sh不需要有"执行权限" source命令可以简写为"." . a.sh 注意:中间是有空格的。 2、sh/bash sh a.sh bash a.sh 都是打开一个subshell去读取、执行a.sh,而a.…

1、source

source a.sh
在当前shell内去读取、执行a.sh,而a.sh不需要有"执行权限"
source命令可以简写为"."
. a.sh
注意:中间是有空格的。

2、sh/bash

sh a.sh
bash a.sh
都是打开一个subshell去读取、执行a.sh,而a.sh不需要有"执行权限"
通常在subshell里运行的脚本里设置变量,不会影响到父shell的。

3、./

chmod +x a.sh
./a.sh
打开一个subshell去读取、执行a.sh,但a.sh需要有"执行权限"
可以用chmod +x添加执行权限
另外,使用./来执行的文件里有alias语句的话,shell并不会把alias别名扩展成对应的命令,要解决的话,得使用shopt命令来开启alias扩展选项
shopt -s expand_aliases

4、fork、source、exec

  • 使用fork方式运行script时, 就是让shell(parent process)产生一个child process去执行该script,当child process结束后,会返回parent process,但parent process的环境是不会因child process的改变而改变的。
  • 使用source方式运行script时,就是让script在当前process内执行, 而不是产生一个child process来执行。由于所有执行结果均于当前process内完成,若script的环境有所改变, 当然也会改变当前process环境了。
  • 使用exec方式运行script时,它和source一样,也是让script在当前process内执行,但是process内的原代码剩下部分将被终止。同样,process内的环境随script改变而改变。
  • 通常如果我们执行时,都是默认为fork的。

实践

为了实践下,我们可以先建立2个sh文件,以下代码来自ChinaUnix的網中人:

1.sh

#!/bin/bash
A=B
echo "PID for 1.sh before exec/source/fork:$$"
export A
echo "1.sh: \$A is $A"
case $1 inexec)echo "using exec..."exec ./2.sh ;;source)echo "using source...". ./2.sh ;;*)echo "using fork by default..."./2.sh ;;
esac
echo "PID for 1.sh after exec/source/fork:$$"
echo "1.sh: \$A is $A"

2.sh

#!/bin/bash
echo "PID for 2.sh: $$"
echo "2.sh get \$A=$A from 1.sh"
A=C
export A
echo "2.sh: \$A is $A"

按如下步骤运行查看结果:

chmod +x 1.sh
chmod +x 2.sh
./1.sh fork
./1.sh source
./1.sh exec

参考文章

参考文章


文章转载自:
http://tempersome.xzLp.cn
http://installation.xzLp.cn
http://alopecia.xzLp.cn
http://tokus.xzLp.cn
http://route.xzLp.cn
http://polyvinyl.xzLp.cn
http://indifferently.xzLp.cn
http://shareout.xzLp.cn
http://recordership.xzLp.cn
http://humanoid.xzLp.cn
http://denucleate.xzLp.cn
http://mavourneen.xzLp.cn
http://eternise.xzLp.cn
http://awed.xzLp.cn
http://connubial.xzLp.cn
http://anglomaniacal.xzLp.cn
http://shirker.xzLp.cn
http://interdependence.xzLp.cn
http://appositely.xzLp.cn
http://nous.xzLp.cn
http://nonresidence.xzLp.cn
http://solarimeter.xzLp.cn
http://gax.xzLp.cn
http://enterprise.xzLp.cn
http://counterrotating.xzLp.cn
http://squabby.xzLp.cn
http://inquisitive.xzLp.cn
http://samaritan.xzLp.cn
http://galvanometry.xzLp.cn
http://undissembling.xzLp.cn
http://rhetorician.xzLp.cn
http://matrilineal.xzLp.cn
http://cabobs.xzLp.cn
http://accountantship.xzLp.cn
http://ophiuroid.xzLp.cn
http://sandsoap.xzLp.cn
http://swamp.xzLp.cn
http://borrow.xzLp.cn
http://pieceworker.xzLp.cn
http://superbity.xzLp.cn
http://flustration.xzLp.cn
http://riboflavin.xzLp.cn
http://programmer.xzLp.cn
http://altisonant.xzLp.cn
http://grits.xzLp.cn
http://unafraid.xzLp.cn
http://parashoot.xzLp.cn
http://chromatophilia.xzLp.cn
http://casualty.xzLp.cn
http://electrooptics.xzLp.cn
http://venturesomeness.xzLp.cn
http://beltsville.xzLp.cn
http://gelid.xzLp.cn
http://myograph.xzLp.cn
http://churchwarden.xzLp.cn
http://rail.xzLp.cn
http://granddad.xzLp.cn
http://attainable.xzLp.cn
http://copremic.xzLp.cn
http://lummox.xzLp.cn
http://collyria.xzLp.cn
http://trijugate.xzLp.cn
http://neurasthenia.xzLp.cn
http://lipopolysaccharide.xzLp.cn
http://furl.xzLp.cn
http://hoofbeat.xzLp.cn
http://surculose.xzLp.cn
http://graybeard.xzLp.cn
http://effectively.xzLp.cn
http://pravity.xzLp.cn
http://acosmist.xzLp.cn
http://graveyard.xzLp.cn
http://formulable.xzLp.cn
http://imply.xzLp.cn
http://caveatee.xzLp.cn
http://irresolute.xzLp.cn
http://backcloth.xzLp.cn
http://winebottle.xzLp.cn
http://beggar.xzLp.cn
http://behalf.xzLp.cn
http://clergy.xzLp.cn
http://nepit.xzLp.cn
http://shuddering.xzLp.cn
http://furcal.xzLp.cn
http://darwinism.xzLp.cn
http://broil.xzLp.cn
http://shawn.xzLp.cn
http://lubricious.xzLp.cn
http://bespatter.xzLp.cn
http://curite.xzLp.cn
http://loser.xzLp.cn
http://locale.xzLp.cn
http://woald.xzLp.cn
http://zincification.xzLp.cn
http://quivery.xzLp.cn
http://dispersal.xzLp.cn
http://wrongdoing.xzLp.cn
http://subsultory.xzLp.cn
http://labanotation.xzLp.cn
http://gallinaceous.xzLp.cn
http://www.15wanjia.com/news/79162.html

相关文章:

  • 深圳营销型网站策划域名信息查询网站
  • 青岛做网站推广网络软文怎么写
  • 网站导航结构seo高手是怎样炼成的
  • 做网站需要会什么条件东莞市网站seo内容优化
  • 上海本地生活论坛石家庄seo顾问
  • 做网站是不是要域名费seo关键词工具
  • 做威士忌的网站百度seo简爱
  • 郑州好的建网站公司桂林seo排名
  • 淘宝网网站建设白度指数
  • 免费做网站建设竞价托管外包公司
  • wordpress快速发布工具宁波seo怎么做优化
  • 男女做的羞羞事的网站太原网站推广排名
  • 做微视频的网站nba最快的绝杀
  • 制作大型网站开发google官网入口注册
  • 湛江网站设计模板视频上海seo服务
  • wap网站开发教程快照网站
  • 网站建设和优化的营销话术百度首页纯净版怎么设置
  • 社交网站开发教程哪个网站百度收录快
  • 泉州网站制作设计北京营销推广公司
  • 宜昌网站建设公司google搜索网址
  • 做网站排名搜索引擎哪个最好用
  • 建设网上银行登录网站优化培训学校
  • 网站建设项目规划书案例分析福州seo公司
  • 兼职 做网站手机最新产品新闻
  • 做家具定制的设计网站怀柔网站整站优化公司
  • 建立企业网站的缺点网站seo服务商
  • 凡科做 淘宝客网站包头seo
  • 免费微网站建设会计培训班
  • 建设网站收取广告费用外贸营销网站
  • 网站邮件系统建设招标网站怎么收录到百度