Find a Class in a bunch of JAR Files
for j in *.jar; do echo $j:; jar -tvf “$j” | grep -Hsi ClassName; done Iterate over every jar in your folder. Output every...
my personal Site of Things
for j in *.jar; do echo $j:; jar -tvf “$j” | grep -Hsi ClassName; done Iterate over every jar in your folder. Output every...
Let’s say you want to tunnel an RDP connection via SSH.User: phausSSH-Server: ssh.example.comRDP-Server: win2k8.example.com You need to run that script and keep your session...
If you installing cocoapods on a vanilla MacOS System you might get some error like this: The important error is make: /opt/local/bin/gmkdir: No such...
Deploy your JAR to your local (file) Repository. You shold also commit this to your CVM System. You can also add JARs as Javadoc...
Sometimes, you would like to have Mapping Char to Int ( A = 0, B = 1, etc.)One easy way to do this is...
Once in a while – and especially if you have a System with an uptime > 300d – HW tends to fail. Good thing,...