27th October 2010
in
System, cli
If you want to find out which applications you run eat the most of your CPU, run the command below:
ps -eo pcpu,pid,args | sort -k 1 -r | head -10
This will display a top 10 list of those processes, starting with the hun[...]
3 Comments
1st October 2010
in
System, cli
Let’s say you have a folder with 5000 MP3 files you want to check for duplicates. Or a directory containing thousands of EPUB files, all with different names but you have a hunch some of them might be duplicates. Y[...]
5 Comments
29th September 2010
in
System, cli
You can execute a task at the time you want it to launch by using at. Let’s say you want mplayer start playing a movie at 12:42. Do a
at 1242
A command prompt will appear where you can type the command you cant to [...]
2 Comments
24th September 2010
in
System, cli
If you want to be able to search through your .bash_history inline, you can simply edit your ~/.inputrc file and add these two lines:
“\e[5~”: history-search-backward“\e[6~”: history-search-forwar[...]
1 Comment