RSS

Handy Command

untuk melakukan kalkulasi ukuran file secara automatis sekali eksekusi command
ls -lrt * | grep "Feb" | awk '{total += $5} END {print total}'
atau
i=0;for total in `ls -lrt * | grep "Feb"| awk '{print $5}'`;do i=`expr $i + $total`;done;echo $i
untuk melakukan gzip beberapa file sekaligus, dengan menggunakan
ls -lrt *.log | grep "Feb" |awk '{print $9}' | xargs pigz -d -p 2
untuk melakukan copy file menggunakan xargs
ls -lrt * | grep "Feb" |awk '{print $9}' | xargs -I '{}' cp '{}' /home/tak/
convert format timestamp to date
tail -f /var/log/nagios/nagios.log | perl -pe 's/(\d+)/localtime($1)/e'
Compress file dengan menggunakan grep
ls -lrt *| grep "Feb 4" | awk '{print $9}' | xargs tar -cvf tes.tar
execute command didalam awk
echo "[11111111111] takul" | awk '{$1 = substr($1,2,10)} END {print "date -d @"$1} | sh

0 comments:

Posting Komentar

Please copy and share it, if it helps you
 
Copyright 2009 My Note All rights reserved.
Free Blogger Templates by DeluxeTemplates.net
Wordpress Theme by EZwpthemes
Blogger Templates