#!/bin/bash
file=$1
if [[ -e $file ]]
then
echo "the file you want to create existed"; exit
else
touch $file && chmod u+x $file
fi; echo "file has been created"
#!/bin/bash
file=$1
if [[ -e $file ]]
then
echo "the file you want to create existed"; exit
else
touch $file && chmod u+x $file
fi; echo "file has been created"
上一篇:显示脚本的名字
下一篇:测试是否可以安装一个rpm包
1.1 目录结构1. 二进制程序目录: 可执行文件(就是可执行程序,比如ls mkdir touch...) /bin,/sbin &nb
一个项目开发完毕后总有一种想法,就是生成可执行文件,总不能一直用python xxx执行吧。以下操作同时适用于windows和Linux下的Pycharm(我在Ubuntu下试验过,生成的是在Ubuntu下的可执行文件)
举报文章
请选择举报类型
补充说明
0/200
上传截图
格式支持JPEG/PNG/JPG,图片不超过1.9M