-
Recent Posts
Recent Comments
Archives
Categories
Meta
Monthly Archives: April 2014
ZFS
sudo apt-get install python-software-properties sudo add-apt-repository ppa:zfs-native/ sudo apt-get update sudo apt-get install ubuntu-zfs modprobe zfs dmesg |grep ZFS
Posted in *nix
Leave a comment
Find new files
How to find new files in current folder this case last 7 days and print it in a nice format find . -type f -ctime -7 -printf “%Tx %TH:%TM %f\n” | sort
Posted in Uncategorized
Leave a comment