Linux/Snippets: Difference between revisions

From Wiki
No edit summary
No edit summary
Line 17: Line 17:
</pre>
</pre>
</blockquote>
</blockquote>
find file with content
<blockquote>
<pre>
grep -iR "$PATTERN" *
</pre>
</blockquote>





Revision as of 17:03, 22 November 2012

File system & drives

List directory sizes

clear;   for each in $(ls) ; do du -hs "$each" ; done


Measure execution time

START=$(date +%s.%N)
command
END=$(date +%s.%N)
DIFF=$(echo "$END - $START" | bc)


find file with content

grep -iR "$PATTERN" *


show hdd power states

sudo hdparm -C /dev/sd?


Manual SSD Trim

sudo fstrim -v /   


Cron SSD Trim

/etc/scripts/fstrim.sh:
#!/bin/sh
#
echo `date +"%d %b %H:%M:%S"` | tr -d '\n' >> /var/log/fstrim
/sbin/fstrim -v / >> /var/log/fstrim
/etc/cron.d/fstrim:
#
0 * * * * root /etc/scripts/fstrim.sh