我需要在我的脚本中写下代码,所以当我在Bash中运行它时,它会将文件x从目录D复制到工作目录。系统:Windows 7 64位。
第一个脚本是创建目录并启动git repos ,
mkdir "directory"
# Create directory
cd directory
# Change directory
git init
# initial git repository
touch README
git add README
# add readme file
git commit -m 'add README'
# commit the changes of the readme file
############################################
# . cdir.sh to run the first script and change the wd to the new one
创建github repos的第二个脚本,
curl -u 'username' https://api.github.com/user/repos -d \
'{"name":"REPO","description":"This project is a test"}'
# Create repository on github
# Remember replace REPO with your repository/application name!
git remote add "origin" git@github.com:ahmedfsalhin/REPO.git
# Remember replace REPO with your repository/application name!
git push origin master
# Push to the origin remote (github) from the master local branch
要运行第二个脚本,我需要先将其复制并粘贴到上面创建的新工作目录中。我需要结合这两个脚本,以便我sh
只能有一个脚本。
答案 0 :(得分:0)
在执行第一个脚本期间组合脚本的正确方法是将source
第二个脚本放入第一个脚本中,从而将其逐字复制到source
或{{1}的第一个脚本中调用:
.