9 Star 2 Fork 1

节瓜在这里/igem2013_sysu

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
CAST_Designer_Linux.sh 446 Bytes
一键复制 编辑 原始数据 按行查看 历史
omegaga 提交于 2013-10-28 10:49 . add linux install an run script
#!/bin/sh
cd project/Python27/
python web/app.py &
cd ../..
LINK='http://127.0.0.1:5000'
echo "chromium $LINK"
if [ -n $BROWSER ];
then
$BROWSER $LINK
elif which chromium > /dev/null;
then
chromium --app=$LINK
elif which firefox > /dev/null;
then
firefox $LINK
elif which chrome > /dev/null;
then
chrome --app=$LINK
elif which opera > /dev/null;
then
opera $LINK
else
echo "No available browser found. Please manually open $LINK"
fi
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/guoskyhero/igem2013_sysu.git
git@gitee.com:guoskyhero/igem2013_sysu.git
guoskyhero
igem2013_sysu
igem2013_sysu
master

搜索帮助