Linux-监控目录及文件】的更多相关文章

一.os.listdir import os, time path_to_watch = "." before = dict ([(f, None) for f in os.listdir (path_to_watch)]) while 1: time.sleep (10) after = dict ([(f, None) for f in os.listdir (path_to_watch)]) added = [f for f in after if not f in before…
1. 一级目录 /dev 设备目录 /etc 系统配置及服务配置文件.启动命令的目录 /proc 显示内核及进程信息的虚拟文件系统 /tmp 临时文件目录 /home 普通用户家目录 /root 超级管理员家目录 /var 变化的目录,一般是日志文件,cache的目录 /usr 用户程序及数据.帮助文件.二进制命令等的目录 /bin 普通用户命令的目录 /sbin和/usr/sbin 超级用户命令的目录 2. 重要的子目录和文件 /etc/resolv.conf 1.linux客户端dns可以在…
1  初识 1.1  终端 打开终端: Ctrl + Alt + F1 ~ F6 图形界面: Ctrl + Alt + F7 1.2  命令 1)  一般 date; cal - calendar; bc - binary calculator (quit  退出计算器; scale = number  结果输出小数) 2)  常用 man/info + 所查命令; shutdown  -h  now/21:30/+10 (分钟) 3)  热键 Tab,  命令补全或文件名补全;   Ctrl…
获得当前目录下文件个数赋值给变量panonum: panonum=$(ls -l |grep "^-" | wc -l) 获取指定目录下文件个数赋值给指定变量: panonum=$(--15_19--/raw_image -type f | wc -l) 获取yaml文件的某个属性的值赋给trigger: trigger=$(--15_19--/info.yaml | grep "trigger" | awk '{print $2}') (获取info.yaml里面…
思路: 目录下文件被篡改的几种可能: 1.被修改 2.被删除 3.新增文件 md5命令详解 参数: -b 以二进制模式读入文件内容 -t 以文本模式读入文件内容 -c 根据已生成的md5值,对现存文件进行校验 --status 校验完成后,不生成错误或正确的提示信息,可以通过命令的返回值来判断 提示:md5sum 是校验文件内容,与文件名是否相同无关 [root@lamp scripts]# mkdir /tmp/test [root@lamp scripts]# touch /tmp/test…
查找目录:find /(查找范围) -name '查找关键字' -type d查找文件:find /(查找范围) -name 查找关键字 -print 如果需要更进一步的了解,可以参看Linux的命令详解. 这里摘抄如下: ·find path -option [ -print ] [ -exec -ok command ] {} /;#-print 将查找到的文件输出到标准输出#-exec command {} /;     -----将查到的文件执行command操作,{} 和 /;之间有空…
#! /bin/bash webroot="/home/www/" cp /dev/null rsync_file if [ ! -f   file.md5 ];then         find $webroot  -type f -exec md5sum {} \; >>file.md5 else         for file in $(md5sum -c file.md5|awk  -F':' '/FAILED/{print $1}')              …
using FtpLib; using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Diagnostics; using System.IO; using System.Linq; using System.ServiceProcess; using System.Text; using System.Threading; using…
查找目录:find /(查找范围) -name '查找关键字' -type d查找文件:find /(查找范围) -name 查找关键字 ·find path -option [ -print ] [ -exec -ok command ] {} /;#-print 将查找到的文件输出到标准输出#-exec command {} /;     -----将查到的文件执行command操作,{} 和 /;之间有空格#-ok 和-exec相同,只不过在操作前要询用户 ================…
查看当前目录下的文件: find . -type f 查看当前目录下的文件夹: find . -type d 如果文件file1不为空: if [ -s file1 ];then      echo "file1 不为空" fi #!/bin/sh for f in `find ./testdir -type f`; do         if [ -s $f ];then                 echo $f is not empty.                 ec…