How to Create a Fat Jar with Maven
A fat jar or uber jar is a jar that contains the classes of your current project as well as all of the classes on which it depends. For example,…
0 Comments
January 25, 2021
A fat jar or uber jar is a jar that contains the classes of your current project as well as all of the classes on which it depends. For example,…
Often when working with files in S3, you need information about all the items in a particular S3 bucket. Below is an example class that extends the AmazonS3Client class to…
Counting the distinct/unique elements of text file is a common task. Below is an example of doing this is AWK, using sample_data_1.txt. cat sample_data_1.txt \ | awk 'BEGIN{FS="\t"} NR>1{names[$2]=1} END{print…