bash functions
bash function for rpm whatprovides
2018/12/31
Sometimes some simple one-liner function can save you a lot of time, like-
Directories with maximum number of files
2018/12/10
Lot of times, I want to find the directories with maximum number of files and so I wrote this quick function to do exactly the same
mv command with progress
2018/03/19
When moving large files/directories, I would like to see the progress. Idea for this is to use rsync with progress and remove source files. But that option does not remove the empty directories left …
Disk usage by file type
2015/11/30
Trying to find the total usage for each of the file types by extension, then here is a quick bash function for you : disk_usage_type () { find . -name '*'$1 -ls | awk ' BEGIN{ a[0]="Bytes"; a[1]="KB"; …
nice little bash function to search for running processes
2014/10/13
Here is a nice little handy function that I use very regurlarly. You can use this function with parameter to just grep for that or just type psa to see all the running processes. Just put this in your …