Sunday, April 29, 2012

Renaming small characters file name to capital letters

Let say you have a small letters filename for a file. And you prefer to convert all of them to capital letters, here goes;

We create several mock files using "touch" command.

najmi@vostro-mint:~/test$ touch aaa bbb ccc

najmi@vostro-mint:~/test$ ls
aaa  bbb  ccc




Use "for" loop as this makes you lazy:

With "verbose" command you should be able to see the output progress:

najmi@vostro-mint:~/test$ for i in *;do mv -v $i `ls $i|tr [a-z] [A-Z]`;done
`aaa' -> `AAA'
`bbb' -> `BBB'
`ccc' -> `CCC'

Done. That's all :)

Thursday, April 26, 2012

Ubuntu 12.04 Precise Pangolin Released

I know many already patiently waiting for the release, here is the link for Ubuntu 12.04 Desktop.

It is LTS - Long Term Support so you can expect a longer support - most suitable for servers.


Tuesday, April 10, 2012

Ubuntu Precise Pangolin 12.04 - Anytime now

Ever downloaded the BETA version of Ubuntu 12.04? What do you think about the features and performance of this version?

Please tell and share with us!

Thanks