linux相关
文章平均质量分 71
迷惘的小行星
这个作者很懒,什么都没留下…
展开
-
实用的shell脚本例子
#实用的shell脚本##1.按月导出mysql日表中的数据,导出后再删除天表#!/bin/bashmonth1=`date '+%Y%m' -d '-1 months'`monthfirst=`date '+%Y%m01'`month1last=`date -d "$monthfirst last day" +%d`i=1j=1##导出数据文件存放路径outdir=/data/mysql_export#遍历有日期后缀的表while [ $i -le $month1last ];do原创 2022-01-26 15:00:06 · 2928 阅读 · 0 评论 -
shell知识点总结
标准输入:控制台输入内容到变量name#!/bin/bashread nameecho $nameif 条件判断:如果$1 字符串长度为0即为空,则date=`date '+%Y%m%d'`,否则为date=$1if [ -z $1 ]thendate=`date '+%Y%m%d'`elsedate=$1fi如果文件存在且大小不为0为真if [ -s 文件名 ]如果文件存在if [ -e 文件名 ]如果两个字符串相同则为真if [string1 =stri...原创 2022-01-18 17:02:07 · 789 阅读 · 0 评论 -
linux 命令整理
1.grep用法搜索该文件夹下的文件内容grep -irl 关键字列出a.txt中所有的逗号,每个逗号一行grep -o ',' a.txt算出a.txt中逗号的个数grep -o ',' a.txt | wc -w查看文件中是否有.sh 忽略大小写cat a.txt | grep -i .sh查看文件中出现1808的行grep 1808 a.txt2.du命令查看当前文件夹下内容占用存储总大小,自动变更为kb mb Gbdu -sh查看当前文件夹下每个文件(或者文件夹)占....原创 2022-01-18 16:49:43 · 3210 阅读 · 0 评论