Posts

Simple Java Command Line Argument Parser Implementation

Post thumbnail
Post thumbnail
Here, we will create a Custom CommandLineParser class to parse the arguments passed via command line in Java. Let’s first see the sample entry point for Java program. public class MyProgram{ public static void main(String args[]) { System.out.println("This is my program."); } } Ever wondered why do we need to... [Read More]

Useful Linux Commands

Post thumbnail
Post thumbnail
I was preparing for an interview for a position where I was supposed to be tested for LINUX commands. So, as I was preparing and testing my commands knowledge on the terminal, I realized it would be better if I created documentation that might be helpful for others. I have... [Read More]
Tags: linux bash