Today we had a problem related with a number of files in a directory. We needed to find directories with a biggest number of files / directories in it. Here is a small shell script that will list directories and a number of files/directories in each directory.
find . -type d|awk {'print "echo -n "$1".\"\t\"; ls "$1"|wc -l"'} > /tmp/do; . /tmp/do|sort -k 2 -n -r |more
Explaining it a little bit:
"find . -type d" - find all directories bellow current directory
"awk {'print "echo -n "$1".\"\t\"; ls "$1"|wc -l"'} > /tmp/do" - generate a script that will print a directory name (echo -n), make ls in this directory and count a number of lines from ls (wc -l)
". /tmp/do" - execute generated script
"sort -k 2 -n -r" - sort the result using second column (-k 2) as numerical (-n) and in reverse order (-r)
Monday, December 19, 2011
Find directory with biggest number of files / directories
Posted by
Unknown
at
10:07 PM
0
comments
Monday, February 22, 2010
iPhone takes too long to sync
After changing a notebook I got a following problem. My iPhone was taking an eternity to sync with iTunes. I made a restore - no solution. I made a restore as new iPhone - same problem. After googling a little bit I found that this can be related with "Sync Photos" option. At the moment that I disabled "sync photos" - my iPhone was synced in a couple of minutes.
Problem: iPhone is taking too much time to sync on Windows 7.
Possible solution: Try to disable "Sync Photos" option.
Posted by
Unknown
at
2:23 PM
0
comments
Labels: iPhone
Sunday, November 8, 2009
VMware crashes after updating (upgrading) of host OS (to CentOS 5.4)
Posted by
Unknown
at
2:38 AM
0
comments
Tuesday, August 4, 2009
Twitter tip
RT @ryancarson: Top tip: You can put a "+" on the end of any http://bit.ly link and see, real time, the pace at which that link is getting shared and clicked
Posted by
Unknown
at
1:48 PM
1 comments
Tuesday, July 7, 2009
VMware troubles
Well, I'm not a hardware guru, but from my experience I figured out the following:
Posted by
Unknown
at
10:32 AM
0
comments
Monday, May 25, 2009
"Network Connection Closed Unexpectedly" error while using svn+ssh
If you got a "Network Connection Closed Unexpectedly" error while using svn+ssh (here is a nice HOWTO) then you should comment (or remove) "mesg y" in /etc/bashrc or in $HOME/.bashrc
Posted by
Unknown
at
8:26 PM
5
comments
Monday, February 16, 2009
iPhone speaker too low
Posted by
Unknown
at
12:24 PM
1 comments
Wednesday, December 3, 2008
How to sync Google Contacts and Calendar with iPhone
I've been looking for some simple solution to sync Google Contacts & Calendar with my iPhone on the air (without syncing with my notebook). Finally I found a solution that seems to be working like a charm.
Posted by
Unknown
at
2:33 PM
0
comments
Labels: iPhone
Friday, August 22, 2008
cfmenu and cfgrid overlap
If you are using <cfmenu> and <cfgrid> and you have an overlapping of the menu items by cfgrid header (a part of menu is hidden behind cfgrid header) you must add to your CSS a following style:
Posted by
Unknown
at
5:47 PM
2
comments
Labels: ColdFusion
Friday, July 25, 2008
ESX host not connecting to Virtual Center
We got following problem some days ago:
- Restart management service on ESX host
- Restart Virtual Center service on Virtual Center server (stop/start on service VMware Virtual Center in Services)
Posted by
Unknown
at
12:31 PM
0
comments
Labels: VMware