shell
WQ同学
这个作者很懒,什么都没留下…
展开
-
shell获取文件总行数的6中方法
awk '{print NR}' test1.sh|tail -n1awk 'END{print NR}' test1.shgrep -n "" test1.sh|awk -F: '{print '}|tail -n1sed -n '$=' test1.shwc -l test1.shcat test1.sh |wc -l欢迎关注,更多惊喜等着你...转载 2019-02-24 23:34:42 · 4192 阅读 · 0 评论 -
shell获取 上一个月的第一天个最后一天
第一天:echo `date "+%Y-%m-%d" -d "-1 month -$(($(date +%d)-1)) days"`最后一天:echo `date "+%Y-%m-%d" -d "-$(date +%d) days"`原创 2019-03-21 13:11:50 · 4237 阅读 · 0 评论 -
获取shell运行的时候传递的参数
这边主要介绍常用的两个方法$1,$2,$3 的方式$1 就是第一个 $2 就是第二个while [ $# -gt 0 ];do case $1 in -sql_file_path) echo "$2" shift ;; -start_date) echo if [ -n "$2" ] ;then echo "start_...原创 2019-03-21 13:14:24 · 771 阅读 · 0 评论