Chinaunix首页 | 论坛 | 博客
  • 博客访问: 915347
  • 博文数量: 75
  • 博客积分: 1216
  • 博客等级: 少尉
  • 技术积分: 1998
  • 用 户 组: 普通用户
  • 注册时间: 2012-08-11 16:20
个人简介

优秀是一种习惯

文章分类

全部博文(75)

文章存档

2014年(1)

2013年(29)

2012年(45)

分类: Python/Ruby

2012-12-16 13:50:18

判断一个文件是否存在,如果不存在就创建:
#!/bin/bash
proclock(){
        if [ -e $1 ];then
                echo "this file is exist.."
        else
                echo "this file is not exist,but while be touch.."
                touch $1
        fi
}

read -p "please input the filename: "
DIR=`dirname $REPLY`
[ ! -d $DIR ] && mkdir -p $DIR
proclock $REPLY

阅读(1271) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~