Sunday, January 08, 2012

PDF Merge / other utilities

http://www.pdfill.com/pdf_tools_free.html

Sunday, June 05, 2011

search filter

find . -name "*jar" -print -exec jar -tvf {} \; | grep pattern ...

Thursday, April 21, 2011

Search for a class file in a set of jars

Lot of times we get the following errors:
Exception in thread "main" java.lang.NoClassDefFoundError: server

And we just don't know which jar file is missing from the classpath. And we need to know the correct jar file name(s) to fix the problem. So, here I create a shell script that would allow you to search through all the jar files by specifying a specific keyword. You may modify this script to search in all files (*) or whatever your criteria may be. This script works recursively for all sub-folders as well. So, you can keep this script on the root level of search and simply execute it.

=====================================
searchjars.sh
=====================================


#!/bin/sh

if [ $# -ne 1 ];
then
echo "Usage: ./searchjars.sh "
exit
fi

LOOK_FOR="$1"

for i in `find . -name "*jar"`
do
#echo "Looking in $i ..."
jar tvf $i | grep $LOOK_FOR > /dev/null
if [ $? == 0 ]
then
echo "==> Found \"$LOOK_FOR\" in $i"
fi
done


After saving this file, don't forget to give the execute permissions to this script.

[jboss@lin01 xlclient]$chmod +x searchjars.sh

Now you are ready to execute as follows:

If you don't specify any value, the script shows you the usage command:
[jboss@lin01 xlclient]$ ./searchjars.sh
Usage: ./searchjars.sh

When you specify the value to be searched, you will see the files that have that value in it.
[jboss@lin01 xlclient]$ ./searchjars.sh server
==> Found "server" in ./java/lib/rt.jar
==> Found "server" in ./ext/jdbcpool-0.99.jar
==> Found "server" in ./ext/nexaweb-nfc-api.jar
==> Found "server" in ./ext/jai_core.jar
==> Found "server" in ./ext/javagroups-all.jar
==> Found "server" in ./ext/jbossall-client.jar
==> Found "server" in ./ext/jboss-client.jar
==> Found "server" in ./ext/nexaweb-common.jar
==> Found "server" in ./ext/soap.jar
==> Found "server" in ./lib/xlVO.jar
==> Found "server" in ./lib/XellerateClient.jar
[jboss@lin01 xlclient]$

If you need to see what files are being looked at, uncomment (remove the #) the following line in the script:
#echo "Looking in $i ..."

Reference: http://rajnishbhatia19.blogspot.com/2008/10/searching-jar-files-in-unix-linux.html

Friday, April 01, 2011

KDE environment for Linux

Install Nomachine client, node and server on Linux machine and restart then
http://www.nomachine.com/download-package.php?Prod_Id=2519
Restart machine after this.

Install windows client on your laptop or desktop
http://www.nomachine.com/download-client-windows.php

Friday, March 18, 2011

linux rpm commands

For help, rpm --help or tar --help from the command line.

Install a package
rpm –ivh packagename

upgrade a package
rpm –Uvh packagename

create a tar file
tar –cvf myfiles.tar mydir/
(add z if you are dealing with or creating .tgz (.tar.gz) files)

standard install from source
tar –xvzf Apackage.tar.gz
cd Apackage
./configure
make
make install

Friday, February 25, 2011

Converting html character to actual character

Source : http://webglimpse.net/docs/howto_uml.html

#!/usr/local/bin/perl


# converts html files into ascii by just stripping anything between
# < and >
# written 4/21/96 by Michael Smith for WebGlimpse
#
# Added code to replace html codes for special chars with the
# characters themselves. 12/19/98 --GB
#
# Also add space in place of space-producing HTML tags
# 12/22/98 --GB

$carry=0;

while(){
$line = $_;

if($carry==1){
# remove all until the first >
next if($line!~s/[^>]*>//);
# if we didn't do next, it succeeded -- reset carry
$carry=0;
}

while($line=~s/(<[^\s>][^>]*>)/&addspace($1)/ge){};
if($line=~s/<[^\s>].*$//){
$carry=1;
}

$line = &fixspecial($line);
print $line;
}


sub addspace () {

$_ = shift;

# Check for tags that should NOT return a space
/(<\/?b>)|(<\/?i>)|(<\/?em>)|(<\/?font)|(<\/?strong)|(<\/?big)/i && return '';
/(<\/?sup)|(<\/?sub)|(<\/?u>)|(<\/?strike)|(<\/?style)/i && return '';

# Otherwise, put in a space
return ' ';

}


sub fixspecial () {

$_ = shift;

s/\ / /g;
s/\ / /g;
s/\¡/¡/g;
s/\¡/¡/g;
s/\¢/¢/g;
s/\¢/¢/g;
s/\£/£/g;
s/\£/£/g;
s/\¤/¤/g;
s/\¤/¤/g;
s/\¥/¥/g;
s/\¥/¥/g;
s/\¦/¦/g;
s/\¦/¦/g;
s/\§/§/g;
s/\§/§/g;
s/\¨/¨/g;
s/\¨/¨/g;
s/\©/©/g;
s/\©/©/g;
s/\ª/ª/g;
s/\ª/ª/g;
s/\«/«/g;
s/\«/«/g;
s/\¬/¬/g;
s/\¬/¬/g;
s/\­/\\/g;
s/\­/\\/g;
s/\®/®/g;
s/\®/®/g;
s/\¯/¯/g;
s/\¯/¯/g;
s/\°/°/g;
s/\°/°/g;
s/\±/±/g;
s/\±/±/g;
s/\²/²/g;
s/\²/²/g;
s/\³/³/g;
s/\³/³/g;
s/\´/´/g;
s/\´/´/g;
s/\µ/µ/g;
s/\µ/µ/g;
s/\¶/¶/g;
s/\¶/¶/g;
s/\·/·/g;
s/\·/·/g;
s/\¸/¸/g;
s/\¸/¸/g;
s/\¹/¹/g;
s/\¹/¹/g;
s/\º/º/g;
s/\º/º/g;
s/\»/»/g;
s/\»/»/g;
s/\¼/¼/g;
s/\¼/¼/g;
s/\½/½/g;
s/\½/½/g;
s/\¾/¾/g;
s/\¾/¾/g;
s/\¿/¿/g;
s/\¿/¿/g;
s/\À/À/g;
s/\À/À/g;
s/\Á/Á/g;
s/\Á/Á/g;
s/\Â/Â/g;
s/\ˆ/Â/g;
s/\Ã/Ã/g;
s/\Ã/Ã/g;
s/\Ä/Ä/g;
s/\Ä/Ä/g;
s/\Å/Å/g;
s/\˚/Å/g;
s/\Æ/Æ/g;
s/\Æ/Æ/g;
s/\Ç/Ç/g;
s/\Ç/Ç/g;
s/\È/È/g;
s/\È/È/g;
s/\É/É/g;
s/\É/É/g;
s/\Ê/Ê/g;
s/\Ê/Ê/g;
s/\Ë/Ë/g;
s/\Ë/Ë/g;
s/\Ì/Ì/g;
s/\Ì/Ì/g;
s/\Í/Í/g;
s/\Í/Í/g;
s/\Î/Î/g;
s/\Î/Î/g;
s/\Ï/Ï/g;
s/\Ï/Ï/g;
s/\Ð/Ð/g;
s/\Ð/Ð/g;
s/\Ñ/Ñ/g;
s/\Ñ/Ñ/g;
s/\Ò/Ò/g;
s/\Ò/Ò/g;
s/\Ó/Ó/g;
s/\Ó/Ó/g;
s/\Ô/Ô/g;
s/\Ô/Ô/g;
s/\Õ/Õ/g;
s/\Õ/Õ/g;
s/\Ö/Ö/g;
s/\Ö/Ö/g;
s/\×/×/g;
s/\×/×/g;
s/\Ø/Ø/g;
s/\Ø/Ø/g;
s/\Ù/Ù/g;
s/\Ù/Ù/g;
s/\Ú/Ú/g;
s/\Ú/Ú/g;
s/\Û/Û/g;
s/\Û/Û/g;
s/\Ü/Ü/g;
s/\Ü/Ü/g;
s/\Ý/Ý/g;
s/\Ý/Ý/g;
s/\Þ/Þ/g;
s/\Þ/Þ/g;
s/\ß/ß/g;
s/\ß/ß/g;
s/\à/à/g;
s/\à/à/g;
s/\á/á/g;
s/\á/á/g;
s/\â/â/g;
s/\â/â/g;
s/\ã/ã/g;
s/\ã/ã/g;
s/\ä/ä/g;
s/\ä/ä/g;
s/\å/å/g;
s/\å/å/g;
s/\æ/æ/g;
s/\æ/æ/g;
s/\ç/ç/g;
s/\ç/ç/g;
s/\è/è/g;
s/\è/è/g;
s/\é/é/g;
s/\é/é/g;
s/\ê/ê/g;
s/\ê/ê/g;
s/\ë/ë/g;
s/\ë/ë/g;
s/\ì/ì/g;
s/\ì/ì/g;
s/\í/í/g;
s/\í/í/g;
s/\î/î/g;
s/\î/î/g;
s/\ï/ï/g;
s/\ï/ï/g;
s/\ð/ð/g;
s/\&ieth;/ð/g;
s/\ñ/ñ/g;
s/\ñ/ñ/g;
s/\ò/ò/g;
s/\ò/ò/g;
s/\ó/ó/g;
s/\ó/ó/g;
s/\ô/ô/g;
s/\ô/ô/g;
s/\õ/õ/g;
s/\õ/õ/g;
s/\ö/ö/g;
s/\ö/ö/g;
s/\÷/÷/g;
s/\÷/÷/g;
s/\ø/ø/g;
s/\ø/ø/g;
s/\ù/ù/g;
s/\ù/ù/g;
s/\ú/ú/g;
s/\ú/ú/g;
s/\û/û/g;
s/\û/û/g;
s/\ü/ü/g;
s/\ü/ü/g;
s/\ý/ý/g;
s/\ý/ý/g;
s/\þ/þ/g;
s/\þ/þ/g;
s/\ÿ/ÿ/g;
s/\ÿ/ÿ/g;
s/\"/"/g;
s/\"/"/g;

# Do the ampersand last, so it won't affect the other substitutions
s/\&/\&/g;
s/\&/\&/g;

return $_;
}

Monday, December 20, 2010

Windows: Determine processor type 32 bit or 64 bit

http://support.microsoft.com/kb/827218
http://windows.microsoft.com/en-US/windows-vista/32-bit-and-64-bit-Windows-frequently-asked-questions