sh 一个小的shell脚本,显示如何将文件上传到S3。用法可以用于ELB

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 一个小的shell脚本,显示如何将文件上传到S3。用法可以用于ELB相关的知识,希望对你有一定的参考价值。

#!/bin/sh

if [ -z "$1" ]; then echo "Please add build number"; exit; fi

rm confirmedBuild
touch confirmedBuild
echo $1 > confirmedBuild
# /usr/bin/s3cmd is where the s3 command tool locates
/usr/bin/s3cmd put confirmedBuild s3://<bucket name>/

以上是关于sh 一个小的shell脚本,显示如何将文件上传到S3。用法可以用于ELB的主要内容,如果未能解决你的问题,请参考以下文章

如何在 cgi-bin 中执行 shell 脚本?

如何让shell脚本变成可执行文件

sh 一个小的shell脚本,用于添加和删除hosts文件中的行。最初由Claus Witt创建,http://clauswitt.com/319.html。

sh 一个小的shell脚本,用于添加和删除hosts文件中的行。最初由Claus Witt创建,http://clauswitt.com/319.html。

老男孩教育每日一题-第95天-shell脚本知识点:书写脚本完成ftp上传下载

Mac上如何运行shell脚本(变为可执行文件)