Oracle/DB2/Postgresql/Mysql/Hadoop/Greenplum/Postgres-xl/Mongodb
分类: LINUX
2011-04-15 16:39:55
1. 将当前目录下10天前的文件移动至 /tmp目录
find . -ctime +10 -type f -exec mv '{}' /tmp/ ';'
需先取消环境变量中.bashrc中
[root@tank a]# more /root/.bashrc
# .bashrc
# User specific aliases and functions
alias rm='rm -i'
#alias cp='cp -i'
#alias mv='mv -i'
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
将a 目录包含目录,复制到/backup/b/ 下面,如果/backup/b/有a目录存在,即复盖a/目录下的文件
cp -a /backup/a /backup/b/
$ grep "被查找的字符串" 文件名
$ grep –e “正则表达式” 文件名
$ grep –i "被查找的字符串" 文件名
$ grep -c "被查找的字符串" 文件名
$ grep –v "被查找的字符串" 文件名
find / -type f -name "*.log" | xargs grep "ERROR"
清除目录下的所有log文件:
find /usr/local/resin80-90/ -name '*.log' | xargs /bin/rm -f