Apply set of operation on one entire column in unix file - bash
I have a file looks like :
"JOB1 #43", 43 "SUCCESS", 1479079800029
"JOB1 #42", 42 "SUCCESS", 1478993400042
"JOB1 #41", 41 "SUCCESS", 1478907000065
"JOB1 #40", 40 "SUCCESS", 1478820600085
"JOB1 #39", 39 "SUCCESS", 1478734200051
need to change last column (timestamp) with date and time format.
Tried so far :
for i in `cat file | awk '{print $NF}'`
do
date -d #$( echo "(${i} + 500) / 1000" | bc)
done
Output:
Sun Nov 13 23:30:00 GMT 2016
Sat Nov 12 23:30:00 GMT 2016
Fri Nov 11 23:30:00 GMT 2016
Thu Nov 10 23:30:00 GMT 2016
Wed Nov 9 23:30:00 GMT 2016
Expected output is
"JOB1 #43", 43 "SUCCESS", Sun Nov 13 23:30:00 GMT 2016
"JOB1 #42", 42 "SUCCESS", Sat Nov 12 23:30:00 GMT 2016
"JOB1 #41", 41 "SUCCESS", Fri Nov 11 23:30:00 GMT 2016
"JOB1 #40", 40 "SUCCESS", Thu Nov 10 23:30:00 GMT 2016
"JOB1 #39", 39 "SUCCESS", Wed Nov 9 23:30:00 GMT 2016
Can we change it in file itself?
Any help would be appreciated.
Try:
awk -F',\\s*' '{print $1 "," $2 "," strftime("%c", $3/1000)}' file
Outputs:
"JOB1 #43",43 "SUCCESS",Sun 13 Nov 2016 23:30:00 GMT
"JOB1 #42",42 "SUCCESS",Sat 12 Nov 2016 23:30:00 GMT
"JOB1 #41",41 "SUCCESS",Fri 11 Nov 2016 23:30:00 GMT
"JOB1 #40",40 "SUCCESS",Thu 10 Nov 2016 23:30:00 GMT
"JOB1 #39",39 "SUCCESS",Wed 09 Nov 2016 23:30:00 GMT
You may like to adjust the date format as necessary.
You can use this awk command (will work with non-gnu awk as well):
awk -F , '{cmd="TZ=UTC date -d #" sprintf("%d", ($NF+500)/1000);
cmd | getline dt; gsub(/[0-9]+$/, dt); close(cmd)} 1' file
"JOB1 #43", 43 "SUCCESS", Sun Nov 13 23:30:00 UTC 2016
"JOB1 #42", 42 "SUCCESS", Sat Nov 12 23:30:00 UTC 2016
"JOB1 #41", 41 "SUCCESS", Fri Nov 11 23:30:00 UTC 2016
"JOB1 #40", 40 "SUCCESS", Thu Nov 10 23:30:00 UTC 2016
"JOB1 #39", 39 "SUCCESS", Wed Nov 9 23:30:00 UTC 2016
We use getline function to call your desired date command and store output in variable dt
Finally wee use gsub instead of assignment i.e. $NF = dt to maintain formatting of input record in output
As you already got the content to replace with, the merging can easily be done using python script.
f1=open("a.txt")
f2=open("b.txt")
lines1 = f1.readlines()
lines2 = f2.readlines()
output_lines=[]
for (l1,l2) in zip(lines1,lines2):
fields = l1.split(",")
fields[2] = l2
output_line = ",".join(fields)
output_lines.append(output_line)
f3 = open("result.txt","w")
f3.writelines(output_lines)
f3.close()
output : result.txt
"JOB1 #43", 43 "SUCCESS",Sun Nov 13 23:30:00 GMT 2016
"JOB1 #42", 42 "SUCCESS",Sat Nov 12 23:30:00 GMT 2016
"JOB1 #41", 41 "SUCCESS",Fri Nov 11 23:30:00 GMT 2016
"JOB1 #40", 40 "SUCCESS",Thu Nov 10 23:30:00 GMT 2016
"JOB1 #39", 39 "SUCCESS",Wed Nov 9 23:30:00 GMT 2016
Related
sort by datetime format in bash
this is an example of my data ip=1.2.3.4, setup_time=05:58:38.617 GMT Tue Mar 16 2021, foo=moshe, bar=haim ip=2.3.4.5, setup_time=05:59:30.260 GMT Tue Mar 16 2021, foo=moshe2, bar=haim2 i would like to be able to sort by the setup_time column in bash. I know that I can't use sort because sort allow only sort by string matching and this is not a format of YYYY-MM-DD HH:mm:ss so string sorting is not possible. so any ideas would be greatly appreciated. thank you #update ok to better understand what i'm trying to achieve i created the folowing file named 1: ip=1.2.3.4, setup_time=06:58:38.617 GMT Tue Mar 16 2021, foo=moshe, bar=haim ip=2.3.4.5, setup_time=05:59:30.260 GMT Tue Mar 17 2021, foo=moshe2, bar=haim2 ip=2.3.4.5, setup_time=06:50:30.260 GMT Tue Mar 18 2021, foo=moshe2, bar=haim2 so I executed this: cat 1 | sed 's/, /!/g' | sort -t '!' -k2,2 what i did here is replaced , with ! so i can use a delimiter in sort, the problem is that sort is doing string sorting and not timestamp kind of sorting so the output is: ip=2.3.4.5!setup_time=05:59:30.260 GMT Tue Mar 17 2021!foo=moshe2!bar=haim2 ip=2.3.4.5!setup_time=06:50:30.260 GMT Tue Mar 18 2021!foo=moshe2!bar=haim2 ip=1.2.3.4!setup_time=06:58:38.617 GMT Tue Mar 16 2021!foo=moshe!bar=haim
Sort is able to deal with month names, thanks to the option M No need to change , into !. Use the white space as delimiter and just issue: LC_ALL=en sort -k7nr -k5Mr -k6nr -k2r sample If you use this as content of the file sample: ip=2.3.4.5, setup_time=05:59:30.260 GMT Tue Apr 1 2021, foo=moshe2, bar=haim2 ip=2.3.4.5, setup_time=05:59:30.260 GMT Tue Mar 17 2021, foo=moshe2, bar=haim2 ip=1.2.3.4, setup_time=06:58:38.617 GMT Tue Mar 16 2021, foo=moshe, bar=haim ip=1.2.3.4, setup_time=06:58:38.617 GMT Tue Feb 28 2021, foo=moshe, bar=haim ip=2.3.4.5, setup_time=06:50:30.260 GMT Tue Mar 18 2020, foo=moshe2, bar=haim2 ip=2.3.4.5, setup_time=06:50:30.260 GMT Tue Mar 18 2021, foo=moshe2, bar=haim2 you will get this as output: ip=2.3.4.5, setup_time=05:59:30.260 GMT Tue Apr 1 2021, foo=moshe2, bar=haim2 ip=2.3.4.5, setup_time=06:50:30.260 GMT Tue Mar 18 2021, foo=moshe2, bar=haim2 ip=2.3.4.5, setup_time=05:59:30.260 GMT Tue Mar 17 2021, foo=moshe2, bar=haim2 ip=1.2.3.4, setup_time=06:58:38.617 GMT Tue Mar 16 2021, foo=moshe, bar=haim ip=1.2.3.4, setup_time=06:58:38.617 GMT Tue Feb 28 2021, foo=moshe, bar=haim ip=2.3.4.5, setup_time=06:50:30.260 GMT Tue Mar 18 2020, foo=moshe2, bar=haim2 Specifying -k7 means to sort on the seventh field. The r option reverses the order of sorting to descending. The M option sorts according the name of the month. The n option sorts numerically. To sort on the time, just consider the whole second field (beginning with the string setup_time=) as a fixed length string using -k2. LC_ALL=en in the begin of the command line tells the system to use the English names of the months.
A solution involving awk: awk ' { year = substr($7, 1, length($7)-1) cmd ="date --date=\""$3" "$4" "$5" "$6" "$year"\" +%s" cmd | getline var print var, $0 close(cmd) }' file | sort -k 1 | cut -f 1- -d' ' The trick is that date --date="GMT Tue Mar 18 2021" will parse the date heuristically (meaning it will also work with gdate --date="GMT Tue 18 Mar 2021"), and then you can print only the seconds since epoch. awk will output the seconds as first column, you sort by it, then you remove the first column from the result. Biggest advantage of this solution is that it will work for other types of date formats (within reason of course). Note1: for this to work you need GNU date (on Mac OS gdate, for example) Note2: instead of awk you could use also bash with while/read (as in Read a file line by line assigning the value to a variable), but awk is rather standard, so not sure if it is a big difference for you.
If you have a sort with month name support -- use that. Pierre's solution is elegant! If you don't, convert the date to ISO 8601 (which sorts lexicographically) and use a Schwartzian transform or a Decorate / Sort / Undecorate pattern. The easiest, since the date you have is non standard, is use Perl to decorate, sort to sort on the first field, then cut to undecorate (remove the added field): perl -lnE ' BEGIN{ %m2n = qw(Jan 01 Feb 02 Mar 03 Apr 04 May 05 Jun 06 Jul 07 Aug 08 Sep 09 Oct 10 Nov 11 Dec 12 );} m/setup_time=([\d:]+).*?(\w\w\w) (\d\d?) (\d\d\d\d),/; $mon=$m2n{$2}; say "$4$mon$3$1\t$_"' YourFile | sort -t $'\t' -r -k1,1 | cut -d $'\t' -f2- Using pierre's data, prints: ip=2.3.4.5, setup_time=05:59:30.260 GMT Tue Apr 1 2021, foo=moshe2, bar=haim2 ip=2.3.4.5, setup_time=06:50:30.260 GMT Tue Mar 18 2021, foo=moshe2, bar=haim2 ip=2.3.4.5, setup_time=05:59:30.260 GMT Tue Mar 17 2021, foo=moshe2, bar=haim2 ip=1.2.3.4, setup_time=06:58:38.617 GMT Tue Mar 16 2021, foo=moshe, bar=haim ip=1.2.3.4, setup_time=06:58:38.617 GMT Tue Feb 28 2021, foo=moshe, bar=haim ip=2.3.4.5, setup_time=06:50:30.260 GMT Tue Mar 18 2020, foo=moshe2, bar=haim2
How should I load resources from src/main/resources in Kotlin?
I'm working on a Spring Boot application written in Kotlin (using Maven), and everything works fine but after generating the jar of my application, it throws an Exception because it can't find the folder src/main/resources: Caused by: java.io.FileNotFoundException: src\main\resources\data\circuits-arrets.json I read that could be because I use File class, and it doesn't work properly after generating the jar. Here's how I read my file: var line: String? val bufferedReader = BufferedReader(FileReader(File(csvLocation))) do { line = bufferedReader.readLine() if (line != null) { //Do something with 'line' } } while (line != null) I found some solutions using InputStream instead of File in the BufferedReader. My question is: Does it really change something for the jar? If yes, how should I do then? Thank you in advance. EDIT: Here's the output of the command jar tvf my-jar.jar : 0 Fri Feb 15 10:34:14 CET 2019 META-INF/ 552 Fri Feb 15 10:34:14 CET 2019 META-INF/MANIFEST.MF 0 Fri Feb 15 10:34:14 CET 2019 org/ 0 Fri Feb 15 10:34:14 CET 2019 org/springframework/ 0 Fri Feb 15 10:34:14 CET 2019 org/springframework/boot/ 0 Fri Feb 15 10:34:14 CET 2019 org/springframework/boot/loader/ 0 Fri Feb 15 10:34:14 CET 2019 org/springframework/boot/loader/data/ 2688 Wed May 09 13:32:20 CEST 2018 org/springframework/boot/loader/data/RandomAccessDataFile$DataInputStream.class 0 Fri Feb 15 10:34:14 CET 2019 org/springframework/boot/loader/jar/ 9736 Wed May 09 13:32:20 CEST 2018 org/springframework/boot/loader/jar/JarURLConnection.class 1374 Wed May 09 13:32:20 CEST 2018 org/springframework/boot/loader/jar/JarFile$JarFileType.class 14915 Wed May 09 13:32:20 CEST 2018 org/springframework/boot/loader/jar/JarFile.class 3414 Wed May 09 13:32:20 CEST 2018 org/springframework/boot/loader/jar/JarEntry.class 345 Wed May 09 13:32:20 CEST 2018 org/springframework/boot/loader/jar/FileHeader.class 3172 Wed May 09 13:32:20 CEST 2018 org/springframework/boot/loader/jar/StringSequence.class 4976 Wed May 09 13:32:20 CEST 2018 org/springframework/boot/loader/jar/AsciiBytes.class 1593 Wed May 09 13:32:20 CEST 2018 org/springframework/boot/loader/jar/JarFileEntries$1.class 1997 Wed May 09 13:32:20 CEST 2018 org/springframework/boot/loader/jar/JarFileEntries$EntryIterator.class 10728 Wed May 09 13:32:20 CEST 2018 org/springframework/boot/loader/jar/JarFileEntries.class 540 Wed May 09 13:32:20 CEST 2018 org/springframework/boot/loader/jar/CentralDirectoryVisitor.class 299 Wed May 09 13:32:20 CEST 2018 org/springframework/boot/loader/jar/JarEntryFilter.class 5267 Wed May 09 13:32:20 CEST 2018 org/springframework/boot/loader/jar/CentralDirectoryFileHeader.class 3116 Wed May 09 13:32:20 CEST 2018 org/springframework/boot/loader/jar/CentralDirectoryEndRecord.class 4624 Wed May 09 13:32:20 CEST 2018 org/springframework/boot/loader/jar/CentralDirectoryParser.class 1693 Wed May 09 13:32:20 CEST 2018 org/springframework/boot/loader/jar/ZipInflaterInputStream.class 11509 Wed May 09 13:32:20 CEST 2018 org/springframework/boot/loader/jar/Handler.class 0 Fri Feb 15 10:34:14 CET 2019 org/springframework/boot/loader/archive/ 302 Wed May 09 13:32:20 CEST 2018 org/springframework/boot/loader/archive/Archive$Entry.class 437 Wed May 09 13:32:20 CEST 2018 org/springframework/boot/loader/archive/Archive$EntryFilter.class 945 Wed May 09 13:32:20 CEST 2018 org/springframework/boot/loader/archive/Archive.class 1487 Wed May 09 13:32:20 CEST 2018 org/springframework/boot/loader/archive/ExplodedArchive$FileEntryIterator$EntryComparator.class 3837 Wed May 09 13:32:20 CEST 2018 org/springframework/boot/loader/archive/ExplodedArchive$FileEntryIterator.class 5243 Wed May 09 13:32:20 CEST 2018 org/springframework/boot/loader/archive/ExplodedArchive.class 1484 Wed May 09 13:32:20 CEST 2018 org/springframework/boot/loader/PropertiesLauncher$ArchiveEntryFilter.class 19737 Wed May 09 13:32:20 CEST 2018 org/springframework/boot/loader/PropertiesLauncher.class 282 Wed May 09 13:32:20 CEST 2018 org/springframework/boot/loader/data/RandomAccessDataFile$1.class 2062 Wed May 09 13:32:20 CEST 2018 org/springframework/boot/loader/jar/JarFile$1.class 1233 Wed May 09 13:32:20 CEST 2018 org/springframework/boot/loader/jar/JarFile$2.class 3263 Wed May 09 13:32:20 CEST 2018 org/springframework/boot/loader/data/RandomAccessDataFile$FileAccess.class 4015 Wed May 09 13:32:20 CEST 2018 org/springframework/boot/loader/data/RandomAccessDataFile.class 1102 Wed May 09 13:32:20 CEST 2018 org/springframework/boot/loader/archive/ExplodedArchive$FileEntry.class 1081 Wed May 09 13:32:20 CEST 2018 org/springframework/boot/loader/archive/JarFileArchive$JarFileEntry.class 7336 Wed May 09 13:32:20 CEST 2018 org/springframework/boot/loader/archive/JarFileArchive.class 1502 Wed May 09 13:32:20 CEST 2018 org/springframework/boot/loader/MainMethodRunner.class 3608 Wed May 09 13:32:20 CEST 2018 org/springframework/boot/loader/ExecutableArchiveLauncher.class 0 Fri Feb 15 10:34:14 CET 2019 org/springframework/boot/loader/util/ 5203 Wed May 09 13:32:20 CEST 2018 org/springframework/boot/loader/util/SystemPropertyUtils.class 485 Wed May 09 13:32:20 CEST 2018 org/springframework/boot/loader/data/RandomAccessData.class 273 Wed May 09 13:32:20 CEST 2018 org/springframework/boot/loader/archive/ExplodedArchive$1.class 1779 Wed May 09 13:32:20 CEST 2018 org/springframework/boot/loader/archive/JarFileArchive$EntryIterator.class 1953 Wed May 09 13:32:20 CEST 2018 org/springframework/boot/loader/PropertiesLauncher$PrefixMatchingArchiveFilter.class 266 Wed May 09 13:32:20 CEST 2018 org/springframework/boot/loader/PropertiesLauncher$1.class 4684 Wed May 09 13:32:20 CEST 2018 org/springframework/boot/loader/Launcher.class 1721 Wed May 09 13:32:20 CEST 2018 org/springframework/boot/loader/WarLauncher.class 1585 Wed May 09 13:32:20 CEST 2018 org/springframework/boot/loader/JarLauncher.class 1527 Wed May 09 13:32:20 CEST 2018 org/springframework/boot/loader/LaunchedURLClassLoader$UseFastConnectionExceptionsEnumeration.class 5687 Wed May 09 13:32:20 CEST 2018 org/springframework/boot/loader/LaunchedURLClassLoader.class 616 Wed May 09 13:32:20 CEST 2018 org/springframework/boot/loader/jar/Bytes.class 702 Wed May 09 13:32:20 CEST 2018 org/springframework/boot/loader/jar/JarURLConnection$1.class 4306 Wed May 09 13:32:20 CEST 2018 org/springframework/boot/loader/jar/JarURLConnection$JarEntryName.class 0 Fri Feb 15 10:34:14 CET 2019 BOOT-INF/ 0 Fri Feb 15 10:34:14 CET 2019 BOOT-INF/classes/ 0 Fri Feb 15 10:34:08 CET 2019 BOOT-INF/classes/constants/ 0 Fri Feb 15 10:33:50 CET 2019 BOOT-INF/classes/data/ 0 Fri Feb 15 10:34:08 CET 2019 BOOT-INF/classes/fr/ 0 Fri Feb 15 10:34:10 CET 2019 BOOT-INF/classes/fr/asi/ 0 Fri Feb 15 10:34:08 CET 2019 BOOT-INF/classes/fr/asi/controllers/ 0 Fri Feb 15 10:34:10 CET 2019 BOOT-INF/classes/fr/asi/entities/ 0 Fri Feb 15 10:34:08 CET 2019 BOOT-INF/classes/fr/asi/entities/jsonEntities/ 0 Fri Feb 15 10:34:10 CET 2019 BOOT-INF/classes/fr/asi/entities/mainEntities/ 0 Fri Feb 15 10:34:10 CET 2019 BOOT-INF/classes/fr/asi/entities/viewModels/ 0 Fri Feb 15 10:34:10 CET 2019 BOOT-INF/classes/fr/asi/repositories/ 0 Fri Feb 15 10:34:10 CET 2019 BOOT-INF/classes/fr/asi/security/ 0 Fri Feb 15 10:34:10 CET 2019 BOOT-INF/classes/fr/asi/services/ 0 Fri Feb 15 10:34:10 CET 2019 BOOT-INF/classes/fr/asi/utils/ 0 Fri Feb 15 10:34:12 CET 2019 META-INF/maven/ 0 Fri Feb 15 10:34:12 CET 2019 META-INF/maven/com.auth0.samples/ 0 Fri Feb 15 10:34:12 CET 2019 META-INF/maven/com.auth0.samples/kotlin-spring-boot/ 584 Fri Feb 15 10:33:50 CET 2019 BOOT-INF/classes/application.properties 87499 Fri Feb 15 10:33:50 CET 2019 BOOT-INF/classes/data/circuits-arrets.json 261015 Fri Feb 15 10:33:50 CET 2019 BOOT-INF/classes/data/tan-arrets.csv 1029 Fri Feb 15 10:34:08 CET 2019 BOOT-INF/classes/fr/asi/Configuration.class 3471 Fri Feb 15 10:34:08 CET 2019 BOOT-INF/classes/fr/asi/controllers/ApplicationUserController.class 6013 Fri Feb 15 10:34:08 CET 2019 BOOT-INF/classes/fr/asi/controllers/BaseController.class 1701 Fri Feb 15 10:34:08 CET 2019 BOOT-INF/classes/fr/asi/controllers/BikeStationController.class 1692 Fri Feb 15 10:34:08 CET 2019 BOOT-INF/classes/fr/asi/controllers/BusStationController.class 612 Fri Feb 15 10:34:08 CET 2019 BOOT-INF/classes/fr/asi/controllers/FavoriteController$WhenMappings.class 5385 Fri Feb 15 10:34:08 CET 2019 BOOT-INF/classes/fr/asi/controllers/FavoriteController.class 1778 Fri Feb 15 10:34:08 CET 2019 BOOT-INF/classes/fr/asi/controllers/LineController.class 7389 Fri Feb 15 10:34:08 CET 2019 BOOT-INF/classes/fr/asi/controllers/StationController.class 1868 Fri Feb 15 10:34:06 CET 2019 BOOT-INF/classes/fr/asi/entities/jsonEntities/Arret.class 1079 Fri Feb 15 10:34:06 CET 2019 BOOT-INF/classes/fr/asi/entities/jsonEntities/BusLineLibelle.class 3252 Fri Feb 15 10:34:08 CET 2019 BOOT-INF/classes/fr/asi/entities/mainEntities/ApplicationUser.class 2977 Fri Feb 15 10:34:08 CET 2019 BOOT-INF/classes/fr/asi/entities/mainEntities/BikeStation.class 2140 Fri Feb 15 10:34:08 CET 2019 BOOT-INF/classes/fr/asi/entities/mainEntities/Favorite.class 2981 Fri Feb 15 10:34:08 CET 2019 BOOT-INF/classes/fr/asi/entities/mainEntities/Station.class 1195 Fri Feb 15 10:34:06 CET 2019 BOOT-INF/classes/fr/asi/entities/viewModels/BaseVM.class 3691 Fri Feb 15 10:34:06 CET 2019 BOOT-INF/classes/fr/asi/entities/viewModels/StationVM.class 1663 Fri Feb 15 10:34:08 CET 2019 BOOT-INF/classes/fr/asi/KotlinSpringBootApplicationKt.class 812 Fri Feb 15 10:34:06 CET 2019 BOOT-INF/classes/fr/asi/repositories/BaseRepository.class 702 Fri Feb 15 10:34:08 CET 2019 BOOT-INF/classes/fr/asi/repositories/BusStationRepository.class 672 Fri Feb 15 10:34:08 CET 2019 BOOT-INF/classes/fr/asi/repositories/LineRepository.class 5530 Fri Feb 15 10:34:08 CET 2019 BOOT-INF/classes/fr/asi/security/JWTAuthenticationFilter.class 2578 Fri Feb 15 10:34:08 CET 2019 BOOT-INF/classes/fr/asi/security/UserDetailsServiceImpl.class 4617 Fri Feb 15 10:34:06 CET 2019 BOOT-INF/classes/fr/asi/services/BaseService.class 1186 Fri Feb 15 10:34:06 CET 2019 BOOT-INF/classes/fr/asi/services/LineService.class 5525 Fri Feb 15 10:34:08 CET 2019 BOOT-INF/classes/fr/asi/StartingDataInjector.class 7943 Fri Feb 15 10:34:06 CET 2019 BOOT-INF/classes/fr/asi/utils/ParsersKt.class 121 Fri Feb 15 10:34:08 CET 2019 META-INF/kotlin-spring-boot.kotlin_module 7216 Fri Feb 15 10:31:38 CET 2019 META-INF/maven/com.auth0.samples/kotlin-spring-boot/pom.xml 1693 Fri Feb 15 10:34:08 CET 2019 BOOT-INF/classes/constants/ConstantsKt.class 1805 Fri Feb 15 10:34:08 CET 2019 BOOT-INF/classes/fr/asi/entities/mainEntities/AccessCondition.class 1065 Fri Feb 15 10:34:08 CET 2019 BOOT-INF/classes/fr/asi/entities/mainEntities/BaseEntity.class 3506 Fri Feb 15 10:34:08 CET 2019 BOOT-INF/classes/fr/asi/entities/mainEntities/BusStation.class 1434 Fri Feb 15 10:34:08 CET 2019 BOOT-INF/classes/fr/asi/entities/mainEntities/FavoriteType.class 2945 Fri Feb 15 10:34:08 CET 2019 BOOT-INF/classes/fr/asi/entities/mainEntities/Line.class 2056 Fri Feb 15 10:34:08 CET 2019 BOOT-INF/classes/fr/asi/entities/mainEntities/StationType.class 2081 Fri Feb 15 10:34:06 CET 2019 BOOT-INF/classes/fr/asi/entities/viewModels/LineVM.class 613 Fri Feb 15 10:34:08 CET 2019 BOOT-INF/classes/fr/asi/KotlinSpringBootApplication.class 1101 Fri Feb 15 10:34:06 CET 2019 BOOT-INF/classes/fr/asi/repositories/ApplicationUserRepository.class 707 Fri Feb 15 10:34:08 CET 2019 BOOT-INF/classes/fr/asi/repositories/BikeStationRepository.class 692 Fri Feb 15 10:34:08 CET 2019 BOOT-INF/classes/fr/asi/repositories/FavoriteRepository.class 687 Fri Feb 15 10:34:08 CET 2019 BOOT-INF/classes/fr/asi/repositories/StationRepository.class 4738 Fri Feb 15 10:34:08 CET 2019 BOOT-INF/classes/fr/asi/security/JWTAuthorizationFilter.class 6776 Fri Feb 15 10:34:08 CET 2019 BOOT-INF/classes/fr/asi/security/WebSecurity.class 1235 Fri Feb 15 10:34:06 CET 2019 BOOT-INF/classes/fr/asi/services/BikeStationService.class 1228 Fri Feb 15 10:34:06 CET 2019 BOOT-INF/classes/fr/asi/services/BusStationService.class 1207 Fri Feb 15 10:34:06 CET 2019 BOOT-INF/classes/fr/asi/services/StationService.class 2405 Fri Feb 15 10:34:06 CET 2019 BOOT-INF/classes/fr/asi/utils/FindersKt.class 5205 Fri Feb 15 10:34:08 CET 2019 BOOT-INF/classes/fr/asi/VMUtils.class 114 Fri Feb 15 10:34:12 CET 2019 META-INF/maven/com.auth0.samples/kotlin-spring-boot/pom.properties 29487 Fri Feb 15 10:33:50 CET 2019 BOOT-INF/classes/data/stations-velos-libre-service-nantes-metropole.csv 0 Fri Feb 15 10:34:14 CET 2019 BOOT-INF/lib/ 628 Wed May 09 13:41:28 CEST 2018 BOOT-INF/lib/spring-boot-starter-data-jpa-2.0.2.RELEASE.jar 593 Wed May 09 13:30:56 CEST 2018 BOOT-INF/lib/spring-boot-starter-2.0.2.RELEASE.jar 927496 Wed May 09 13:19:02 CEST 2018 BOOT-INF/lib/spring-boot-2.0.2.RELEASE.jar 1161361 Wed May 09 13:25:34 CEST 2018 BOOT-INF/lib/spring-boot-autoconfigure-2.0.2.RELEASE.jar 613 Wed May 09 13:30:56 CEST 2018 BOOT-INF/lib/spring-boot-starter-logging-2.0.2.RELEASE.jar 290339 Fri Mar 31 21:27:54 CEST 2017 BOOT-INF/lib/logback-classic-1.2.3.jar 471901 Fri Mar 31 21:27:16 CEST 2017 BOOT-INF/lib/logback-core-1.2.3.jar 17519 Sun Nov 19 01:08:44 CET 2017 BOOT-INF/lib/log4j-to-slf4j-2.10.0.jar 255485 Sun Nov 19 00:48:58 CET 2017 BOOT-INF/lib/log4j-api-2.10.0.jar 4596 Thu Mar 16 17:37:48 CET 2017 BOOT-INF/lib/jul-to-slf4j-1.7.25.jar 26586 Wed Feb 21 15:54:16 CET 2018 BOOT-INF/lib/javax.annotation-api-1.3.2.jar 297518 Sat Oct 14 11:44:44 CEST 2017 BOOT-INF/lib/snakeyaml-1.19.jar 600 Wed May 09 13:41:20 CEST 2018 BOOT-INF/lib/spring-boot-starter-aop-2.0.2.RELEASE.jar 1930381 Wed Nov 15 11:26:54 CET 2017 BOOT-INF/lib/aspectjweaver-1.8.13.jar 598 Wed May 09 13:41:22 CEST 2018 BOOT-INF/lib/spring-boot-starter-jdbc-2.0.2.RELEASE.jar 143471 Thu Apr 05 17:30:38 CEST 2018 BOOT-INF/lib/HikariCP-2.7.9.jar 401279 Tue May 08 08:06:44 CEST 2018 BOOT-INF/lib/spring-jdbc-5.0.6.RELEASE.jar 6739203 Thu Apr 26 11:06:04 CEST 2018 BOOT-INF/lib/hibernate-core-5.2.17.Final.jar 66469 Wed Feb 14 13:23:28 CET 2018 BOOT-INF/lib/jboss-logging-3.3.2.Final.jar 113371 Fri Jul 26 12:01:34 CEST 2013 BOOT-INF/lib/hibernate-jpa-2.1-api-1.0.0.Final.jar 739582 Tue Oct 10 18:04:58 CEST 2017 BOOT-INF/lib/javassist-3.22.0-GA.jar 445288 Wed Sep 06 11:15:06 CEST 2006 BOOT-INF/lib/antlr-2.7.7.jar 186741 Tue Aug 02 13:41:56 CEST 2016 BOOT-INF/lib/jandex-2.0.3.Final.jar 65100 Sat Sep 09 14:47:28 CEST 2017 BOOT-INF/lib/classmate-1.3.4.jar 313898 Mon May 16 14:19:12 CEST 2005 BOOT-INF/lib/dom4j-1.6.1.jar 75288 Tue Nov 24 15:03:08 CET 2015 BOOT-INF/lib/hibernate-commons-annotations-5.0.1.Final.jar 30724 Mon May 13 15:11:34 CEST 2013 BOOT-INF/lib/javax.transaction-api-1.2.jar 335660 Tue May 08 14:29:02 CEST 2018 BOOT-INF/lib/spring-data-jpa-2.0.7.RELEASE.jar 1076871 Tue May 08 14:23:50 CEST 2018 BOOT-INF/lib/spring-data-commons-2.0.7.RELEASE.jar 191789 Tue May 08 08:07:28 CEST 2018 BOOT-INF/lib/spring-orm-5.0.6.RELEASE.jar 255201 Tue May 08 08:06:38 CEST 2018 BOOT-INF/lib/spring-tx-5.0.6.RELEASE.jar 41203 Thu Mar 16 17:36:32 CET 2017 BOOT-INF/lib/slf4j-api-1.7.25.jar 46745 Tue May 08 08:08:48 CEST 2018 BOOT-INF/lib/spring-aspects-5.0.6.RELEASE.jar 588 Wed May 09 13:41:32 CEST 2018 BOOT-INF/lib/spring-boot-starter-web-2.0.2.RELEASE.jar 645 Wed May 09 13:41:30 CEST 2018 BOOT-INF/lib/spring-boot-starter-json-2.0.2.RELEASE.jar 33392 Mon Mar 26 15:55:48 CEST 2018 BOOT-INF/lib/jackson-datatype-jdk8-2.9.5.jar 99630 Mon Mar 26 15:56:26 CEST 2018 BOOT-INF/lib/jackson-datatype-jsr310-2.9.5.jar 8646 Mon Mar 26 15:54:04 CEST 2018 BOOT-INF/lib/jackson-module-parameter-names-2.9.5.jar 591 Wed May 09 13:41:32 CEST 2018 BOOT-INF/lib/spring-boot-starter-tomcat-2.0.2.RELEASE.jar 3115994 Fri Apr 27 21:24:52 CEST 2018 BOOT-INF/lib/tomcat-embed-core-8.5.31.jar 240244 Fri Apr 27 21:24:54 CEST 2018 BOOT-INF/lib/tomcat-embed-el-8.5.31.jar 256776 Fri Apr 27 21:24:54 CEST 2018 BOOT-INF/lib/tomcat-embed-websocket-8.5.31.jar 1130724 Tue Mar 27 09:03:18 CEST 2018 BOOT-INF/lib/hibernate-validator-6.0.9.Final.jar 93107 Tue Dec 19 16:23:28 CET 2017 BOOT-INF/lib/validation-api-2.0.1.Final.jar 1254097 Tue May 08 08:07:04 CEST 2018 BOOT-INF/lib/spring-web-5.0.6.RELEASE.jar 789889 Tue May 08 08:07:52 CEST 2018 BOOT-INF/lib/spring-webmvc-5.0.6.RELEASE.jar 604 Wed May 09 13:41:42 CEST 2018 BOOT-INF/lib/spring-boot-starter-security-2.0.2.RELEASE.jar 366299 Tue May 08 08:06:20 CEST 2018 BOOT-INF/lib/spring-aop-5.0.6.RELEASE.jar 691611 Tue May 08 15:25:12 CEST 2018 BOOT-INF/lib/spring-security-config-5.0.5.RELEASE.jar 494788 Tue May 08 15:24:48 CEST 2018 BOOT-INF/lib/spring-security-web-5.0.5.RELEASE.jar 72603 Thu Jan 10 22:41:24 CET 2019 BOOT-INF/lib/spring-security-crypto-5.1.3.RELEASE.jar 433210 Thu Jan 10 22:41:26 CET 2019 BOOT-INF/lib/spring-security-core-5.1.3.RELEASE.jar 660573 Tue May 08 08:06:02 CEST 2018 BOOT-INF/lib/spring-beans-5.0.6.RELEASE.jar 1090735 Tue May 08 08:06:32 CEST 2018 BOOT-INF/lib/spring-context-5.0.6.RELEASE.jar 1226584 Tue May 08 08:05:54 CEST 2018 BOOT-INF/lib/spring-core-5.0.6.RELEASE.jar 21704 Tue May 08 08:05:42 CEST 2018 BOOT-INF/lib/spring-jcl-5.0.6.RELEASE.jar 279878 Tue May 08 08:06:20 CEST 2018 BOOT-INF/lib/spring-expression-5.0.6.RELEASE.jar 13769 Tue Nov 13 13:35:54 CET 2018 BOOT-INF/lib/kotlin-stdlib-jdk8-1.3.10.jar 1181292 Tue Nov 13 13:25:52 CET 2018 BOOT-INF/lib/kotlin-stdlib-1.3.10.jar 151024 Tue Nov 13 13:24:28 CET 2018 BOOT-INF/lib/kotlin-stdlib-common-1.3.10.jar 17536 Tue Dec 17 16:10:34 CET 2013 BOOT-INF/lib/annotations-13.0.jar 3137 Tue Nov 13 13:35:52 CET 2018 BOOT-INF/lib/kotlin-stdlib-jdk7-1.3.10.jar 2645740 Tue Nov 13 13:33:06 CET 2018 BOOT-INF/lib/kotlin-reflect-1.3.10.jar 501860 Wed Aug 15 21:36:52 CEST 2018 BOOT-INF/lib/commons-lang3-3.8.jar 127509 Fri Aug 04 15:17:50 CEST 2017 BOOT-INF/lib/javax.ws.rs-api-2.1.jar 164361 Sun Dec 23 12:30:54 CET 2018 BOOT-INF/lib/klaxon-5.0.1.jar 50732 Thu Jan 03 15:45:18 CET 2019 BOOT-INF/lib/java-jwt-3.5.0.jar 1342410 Mon Mar 26 15:13:56 CEST 2018 BOOT-INF/lib/jackson-databind-2.9.5.jar 66519 Sat Jul 29 20:53:26 CEST 2017 BOOT-INF/lib/jackson-annotations-2.9.0.jar 321590 Mon Mar 26 08:04:00 CEST 2018 BOOT-INF/lib/jackson-core-2.9.5.jar 335042 Tue Oct 17 08:53:20 CEST 2017 BOOT-INF/lib/commons-codec-1.11.jar 1007502 Tue Aug 07 08:59:10 CEST 2018 BOOT-INF/lib/mysql-connector-java-5.1.47.jar
I finally solved the problem. I don't if know using the BufferedReader is still the best practice, but I decided to keep it in my code as everything was done with it already. So I dropped the use of File class, and I used the following to get a resource from src/main/resources: var line: String? val bufferedReader = BufferedReader(InputStreamReader(Thread.currentThread().contextClassLoader.getResourceAsStream(csvLocation))) do { line = bufferedReader.readLine() if (line != null) { //Do something with 'line' } } while (line != null) csvLocation value is "data/myFile.csv". This file is located in src/main/resources/data Finally this solution works in my IDE and in the generated jar. Problem solved.
The production app will not run in your IDE, right? So that is of lesser importance than finding where the file exists on the classpath. Essentially, there is no src/main/resources dir in the jar file - that directory is just a Maven convention for holding resources in a project. If you crack the jar and find the files in question, you'll understand better where Maven puts those files at package time and how to access them. Also note, a Maven-aware IDE will put files in src/main/resources on the app classpath, so the app will likely run in the IDE as well once the correct solution is identified. To access the application.properties file in the example, use getResource or getResourceAsStream as suggested, with path /BOOT-INF/classes/application.properties. Note the first slash.
How can I get AWK to start reading by the end?
I need to parse all a file into a better format to produce an outcome with columns delimited by a comma, thinking of being able to export the content in CSV file. This is an example of my input; . D 0 Mon Dec 10 11:07:46 2018 .. D 0 Mon Feb 19 11:38:06 2018 RJ9-5 D 0 Fri Nov 30 10:34:24 2018 WorkingOnClass D 0 Wed Feb 28 09:37:52 2018 ML-Test001 D 0 Fri Dec 7 16:38:56 2018 TestML4Testing D 0 Wed Aug 22 08:58:42 2018 ML-NewDataSE SetCases1.xlsx A 1415577 Wed Aug 29 14:00:16 2018 DR0001-Dum01 D 0 Thu Aug 16 08:24:25 2018 DR0002-Dum02 D 0 Thu Aug 16 09:04:50 2018 Readme File for Documentation And Data Description.docx A 16136 Wed Aug 29 14:00:24 2018 ML Database Prototype D 0 Thu Dec 6 15:11:11 2018 OneNote D 0 Mon Dec 3 09:39:20 2018 Data A 0 Mon Dec 10 11:07:46 2018 \RJ9-5 . D 0 Fri Nov 30 10:34:24 2018 .. D 0 Mon Dec 10 11:07:46 2018 KLR0151_Set023_Files_RJ9_05.xlsx A 182462 Wed Apr 4 02:48:55 2018 KLR0152_Set023_Files_RJ9_05.xlsx A 525309 Wed Apr 4 02:53:57 2018 \ML-Test001 . D 0 Wed Feb 28 09:37:52 2018 .. D 0 Mon Dec 10 11:07:46 2018 WT_Conforming_Format1_1.docx A 500914 Mon Feb 26 08:50:55 2018 Conforming_Format_1_1.xlsx A 130647 Mon Feb 26 08:52:33 2018 DR0135_Dum01_text.xls A 974848 Mon Feb 12 08:11:11 2018 DR0139_Dum02_body.xls A 1061888 Tue Jun 19 13:43:54 2018 DataSet_File_mod0874953.xlsx A 149835 Mon Feb 26 14:17:02 2018 File Path For Dataset-2018.07.11.xlsx A 34661 Mon Feb 12 09:27:17 This is script right here can make the job: #!/bin/bash awk -v OFS=, ' BEGIN { print "PATH, FILENAME, SIZE, TIMESTAMP" } /[\\]/ { path=$0 } $2 ~ /A/ {print path"\\"$1,$3,$4 " " $5 " " $6 " " $7 " "$8 } ' "$#" But is ignoring the names with spaces on it, so I need to validate them with something like: awk -v FS="\t" '{print $1}' But I could't integrate into the shell script, because the way the shell script is working, so I was thinking on make AWK to start reading by the end, since the end is always the same, and leave the rest. The output should something like this: /RJ9-5/KLR0151_Set023_Files_RJ9_05.xlsx,182462,Wed Apr 4 02:48:55 2018 /RJ9-5/KLR0152_Set023_Files_RJ9_05.xlsx,25309,Wed Apr 4 02:53:57 2018 /ML-Test001/WT_Conforming_Format1_1.docx,500914,Mon Feb 26 08:50:55 2018 /ML-Test001/Format_1_1.xlsx,130647,Mon Feb 26 08:52:33 2018 /ML-Test001/DR0135_Dum01_text.xls,974848,Mon Feb 12 08:11:11 2018 /ML-Test001/DR0139_Dum02_body.xls,1061888,Tue Jun 19 13:43:54 2018 /ML-Test001/DataSet_File_mod0874953.xlsx,149835,Mon Feb 26 14:17:02 2018 /ML-Test001/File Path For Dataset-2018.07.11.xlsx,34661,Mon Feb 12 09:27:17 2018
With GNU awk for the 3rd arg to match() (and far less importantly \s shorthand for [[:space:]]): $ cat tst.awk BEGIN { OFS="," } { gsub(/^\s+|\s+$/,"") } sub(/^\\/,"/") { path = $0; next } path == "" { next } match($0,/^(.*[^ ]) +A +([^ ]+) +(.*)/,a) { print path "/" a[1], a[2], a[3] } $ awk -f tst.awk file /RJ9-5/KLR0151_Set023_Files_RJ9_05.xlsx,182462,Wed Apr 4 02:48:55 2018 /RJ9-5/KLR0152_Set023_Files_RJ9_05.xlsx,525309,Wed Apr 4 02:53:57 2018 /ML-Test001/WT_Conforming_Format1_1.docx,500914,Mon Feb 26 08:50:55 2018 /ML-Test001/Conforming_Format_1_1.xlsx,130647,Mon Feb 26 08:52:33 2018 /ML-Test001/DR0135_Dum01_text.xls,974848,Mon Feb 12 08:11:11 2018 /ML-Test001/DR0139_Dum02_body.xls,1061888,Tue Jun 19 13:43:54 2018 /ML-Test001/DataSet_File_mod0874953.xlsx,149835,Mon Feb 26 14:17:02 2018 /ML-Test001/File Path For Dataset-2018.07.11.xlsx,34661,Mon Feb 12 09:27:17
Try this Perl solution: $ perl -lane ' if(/^\s*$/) { $x=0;$y=0} if(/^\\/) {$x=1 ;($a=$_)=~s/\s*$//g;$a=~s/\\/\//g; } $y++ if $x==1 ; if($y>3) { s/^\s*//g; $_=~s/(.+?)\s+\S+\s+((\d+)\s+.+)/$1 $2/g;print "$a/$_" } ' essparaq.txt /RJ9-5/KLR0151_Set023_Files_RJ9_05.xlsx 182462 Wed Apr 4 02:48:55 2018 /RJ9-5/KLR0152_Set023_Files_RJ9_05.xlsx 525309 Wed Apr 4 02:53:57 2018 /ML-Test001/WT_Conforming_Format1_1.docx 500914 Mon Feb 26 08:50:55 2018 /ML-Test001/Conforming_Format_1_1.xlsx 130647 Mon Feb 26 08:52:33 2018 /ML-Test001/DR0135_Dum01_text.xls 974848 Mon Feb 12 08:11:11 2018 /ML-Test001/DR0139_Dum02_body.xls 1061888 Tue Jun 19 13:43:54 2018 /ML-Test001/DataSet_File_mod0874953.xlsx 149835 Mon Feb 26 14:17:02 2018 /ML-Test001/File Path For Dataset-2018.07.11.xlsx 34661 Mon Feb 12 09:27:17 $ cat essparaq.txt . D 0 Mon Dec 10 11:07:46 2018 .. D 0 Mon Feb 19 11:38:06 2018 RJ9-5 D 0 Fri Nov 30 10:34:24 2018 WorkingOnClass D 0 Wed Feb 28 09:37:52 2018 ML-Test001 D 0 Fri Dec 7 16:38:56 2018 TestML4Testing D 0 Wed Aug 22 08:58:42 2018 ML-NewDataSE SetCases1.xlsx A 1415577 Wed Aug 29 14:00:16 2018 DR0001-Dum01 D 0 Thu Aug 16 08:24:25 2018 DR0002-Dum02 D 0 Thu Aug 16 09:04:50 2018 Readme File for Documentation And Data Description.docx A 16136 Wed Aug 29 14 :00:24 2018 ML Database Prototype D 0 Thu Dec 6 15:11:11 2018 OneNote D 0 Mon Dec 3 09:39:20 2018 Data A 0 Mon Dec 10 11:07:46 2018 \RJ9-5 . D 0 Fri Nov 30 10:34:24 2018 .. D 0 Mon Dec 10 11:07:46 2018 KLR0151_Set023_Files_RJ9_05.xlsx A 182462 Wed Apr 4 02:48:55 2018 KLR0152_Set023_Files_RJ9_05.xlsx A 525309 Wed Apr 4 02:53:57 2018 \ML-Test001 . D 0 Wed Feb 28 09:37:52 2018 .. D 0 Mon Dec 10 11:07:46 2018 WT_Conforming_Format1_1.docx A 500914 Mon Feb 26 08:50:55 2018 Conforming_Format_1_1.xlsx A 130647 Mon Feb 26 08:52:33 2018 DR0135_Dum01_text.xls A 974848 Mon Feb 12 08:11:11 2018 DR0139_Dum02_body.xls A 1061888 Tue Jun 19 13:43:54 2018 DataSet_File_mod0874953.xlsx A 149835 Mon Feb 26 14:17:02 2018 File Path For Dataset-2018.07.11.xlsx A 34661 Mon Feb 12 09:27:17
extract data date wise and do average calculation
How to extract data date wise and do average calculation per date from the below shown output. last column is average. Sun Jul 5 00:00:02 IST 2015, 97 Sun Jul 5 00:02:01 IST 2015, 97 Sun Jul 5 00:04:02 IST 2015, 97 Mon Jul 6 00:00:01 IST 2015, 73 Mon Jul 6 00:02:02 IST 2015, 93 Mon Jul 6 00:04:02 IST 2015, 97 Tue Jul 7 00:00:02 IST 2015, 97 Tue Jul 7 00:02:02 IST 2015, 97 Tue Jul 7 00:04:01 IST 2015, 97 Wed Jul 8 00:00:01 IST 2015, 98 Wed Jul 8 00:02:02 IST 2015, 98 Wed Jul 8 00:04:01 IST 2015, 98 Thu Jul 9 00:00:02 IST 2015, 100 Thu Jul 9 00:02:01 IST 2015, 100 Thu Jul 9 00:04:01 IST 2015, 100 Fri Jul 10 00:00:01 IST 2015, 100 Fri Jul 10 00:02:02 IST 2015, 100 Fri Jul 10 00:04:02 IST 2015, 100 Sat Jul 11 00:00:01 IST 2015, 73 Sat Jul 11 00:02:01 IST 2015, 73 Sat Jul 11 00:04:02 IST 2015, 73 want output as Jun 6 - 97 Jun 7 - 86.66 ...
You can use this awk: awk -F ', ' '{ split($1, a, " "); k=a[2] OFS a[3]; if(!(k in c)) b[++n]=k; c[k]++; sum[k]+=$2 } END{ for(i=1; i<=n; i++) printf "%s - %.2f\n", b[i], (sum[b[i]]/c[b[i]]) }' file Jul 5 - 97.00 Jul 6 - 87.67 Jul 7 - 97.00 Jul 8 - 98.00 Jul 9 - 100.00 Jul 10 - 100.00 Jul 11 - 73.00
Listing missing months in an array of dates
I have a list of transactions in an array. => [Wed, 23 Oct 2013, Mon, 18 Nov 2013, Fri, 22 Nov 2013, Mon, 13 Jan 2014, Tue, 28 Jan 2014, Mon, 03 Feb 2014, Mon, 10 Feb 2014, Tue, 18 Feb 2014, Fri, 07 Mar 2014, Mon, 31 Mar 2014, Mon, 07 Apr 2014, Tue, 10 Jun 2014, Mon, 30 Jun 2014, Mon, 22 Sep 2014, Mon, 06 Oct 2014, Fri, 14 Nov 2014, Tue, 18 Nov 2014, Fri, 26 Dec 2014, Thu, 15 Jan 2015, Mon, 23 Mar 2015, Mon, 20 Apr 2015] I need to compare the dates of each transaction and list any months that are missing in the list of months and year. Here is what I have now... #find_transactions = (#user.transactions.find_all { |t| (t.name 'name' }) #trans_dates = #find_transactions.map(&:date).sort!.map { |s| Date.strptime(s, '%Y-%m') }.each_cons(2).map{ |d1,d2| d1.next_month == d2 } This method currently gives me a true or false if each month is there but I need to actually have the method print a list of months that are missing. I would like to have it print the month and year together. Here is the response this method gives me... => [true, false, true, false, false, true, false, true, false, false, false, true, true] I want a response like this... => [March 2015, December 2014, September 2014] Thanks in advance!
Edit: For array already being composed of date objects you can do: require 'date' dates = [Wed, 23 Oct 2013, Mon, 18 Nov 2013, Fri, 22 Nov 2013, Mon, 13 Jan 2014, Tue, 28 Jan 2014, Mon, 03 Feb 2014, Mon, 10 Feb 2014, Tue, 18 Feb 2014, Fri, 07 Mar 2014, Mon, 31 Mar 2014, Mon, 07 Apr 2014, Tue, 10 Jun 2014, Mon, 30 Jun 2014, Mon, 22 Sep 2014, Mon, 06 Oct 2014, Fri, 14 Nov 2014, Tue, 18 Nov 2014, Fri, 26 Dec 2014, Thu, 15 Jan 2015, Mon, 23 Mar 2015, Mon, 20 Apr 2015] all_dates = [] dates.first.upto(dates.last) {|x| all_dates << x.strftime('%b %Y') if x.day == 1 || x == dates.first} d = dates.map {|x| x.strftime('%b %Y')}.uniq p (all_dates - d) #=> ["Dec 2013", "May 2014", "Jul 2014", "Aug 2014", "Feb 2015"] Edit: Below methods are for an array of date strings You can try this: require 'date' dates = ["Wed, 23 Oct 2013", "Mon, 18 Nov 2013", "Fri, 22 Nov 2013", "Mon, 13 Jan 2014", "Tue, 28 Jan 2014", "Mon, 03 Feb 2014", "Mon, 10 Feb 2014", "Tue, 18 Feb 2014", "Fri, 07 Mar 2014", "Mon, 31 Mar 2014", "Mon, 07 Apr 2014", "Tue, 10 Jun 2014", "Mon, 30 Jun 2014", "Mon, 22 Sep 2014", "Mon, 06 Oct 2014", "Fri, 14 Nov 2014", "Tue, 18 Nov 2014", "Fri, 26 Dec 2014", "Thu, 15 Jan 2015", "Mon, 23 Mar 2015", "Mon, 20 Apr 2015"] all_dates = [] d = dates.map {|x| Date.parse(x[8..-1])}.uniq counter = d.first until counter == d.last all_dates << counter counter = counter.next_month end p (all_dates - d).map {|x| x.strftime('%b %Y')} #=> ["Dec 2013", "May 2014", "Jul 2014", "Aug 2014", "Feb 2015"] Another (more concise) way would be: require 'date' dates = ["Wed, 23 Oct 2013", "Mon, 18 Nov 2013", "Fri, 22 Nov 2013", "Mon, 13 Jan 2014", "Tue, 28 Jan 2014", "Mon, 03 Feb 2014", "Mon, 10 Feb 2014", "Tue, 18 Feb 2014", "Fri, 07 Mar 2014", "Mon, 31 Mar 2014", "Mon, 07 Apr 2014", "Tue, 10 Jun 2014", "Mon, 30 Jun 2014", "Mon, 22 Sep 2014", "Mon, 06 Oct 2014", "Fri, 14 Nov 2014", "Tue, 18 Nov 2014", "Fri, 26 Dec 2014", "Thu, 15 Jan 2015", "Mon, 23 Mar 2015", "Mon, 20 Apr 2015"] all_dates = [] d = dates.map {|x| Date.parse(x[8..-1])}.uniq d.first.upto(d.last) {|x| all_dates << x if x.day == 1} p (all_dates - d).map {|x| x.strftime('%b %Y')} #=> ["Dec 2013", "May 2014", "Jul 2014", "Aug 2014", "Feb 2015"]
This is one way you could do that. Code require 'date' def missing_months(dates) a = dates.map { |s| d = Date.strptime(s, '%a, %d %b %Y'); d - d.day + 1 } (all_months_in_range(*a.minmax) -a).map { |d| d.strftime('%b %Y') } end def all_months_in_range(f,l) (12*(l.year-f.year)+l.month-f.month+1).times.map do |i| y,m = (f.month+i).divmod(12) y += f.year (m=12; y-=1) if m ==0 Date.new(y,m) end end Example dates = ['Wed, 23 Oct 2013', 'Mon, 18 Nov 2013', 'Fri, 22 Nov 2013', 'Fri, 14 Nov 2014', 'Tue, 18 Nov 2014', 'Fri, 26 Dec 2014', 'Mon, 13 Jan 2014', 'Tue, 28 Jan 2014', 'Mon, 03 Feb 2014', 'Mon, 31 Mar 2014', 'Mon, 07 Apr 2014', 'Tue, 10 Jun 2014', 'Mon, 30 Jun 2014', 'Mon, 22 Sep 2014', 'Mon, 06 Oct 2014', 'Mon, 10 Feb 2014', 'Tue, 18 Feb 2014', 'Fri, 07 Mar 2014', 'Thu, 15 Jan 2015', 'Mon, 23 Mar 2015', 'Mon, 20 Apr 2015'] missing_months(dates) #=> ["Dec 2013", "May 2014", "Jul 2014", "Aug 2014", "Feb 2015"] Notice that the dates needn't be sorted. Explanation For the example above: a = dates.map { |s| d = Date.strptime(s, '%a, %d %b %Y'); d - d.day + 1 } #=> [#<Date: 2013-10-01 ((2456567j,0s,0n),+0s,2299161j)>, # #<Date: 2013-11-01 ((2456598j,0s,0n),+0s,2299161j)>, # ... # #<Date: 2015-04-01 ((2457114j,0s,0n),+0s,2299161j)>] Notice that each of these dates is on the first of the month. Next, obtain the first and last of these dates: f,l = a.minmax f #=> [#<Date: 2013-10-01 ((2456567j,0s,0n),+0s,2299161j)>, l #=> #<Date: 2015-04-01 ((2457114j,0s,0n),+0s,2299161j)>] Now pass f and l to all_months_in_range to create an array that contains a date object for the first day of each month between f and l. b = all_months_in_range(f,l) #=> [#<Date: 2013-10-01 ((2456567j,0s,0n),+0s,2299161j)>, # #<Date: 2013-11-01 ((2456598j,0s,0n),+0s,2299161j)>, # ... # #<Date: 2015-04-01 ((2457114j,0s,0n),+0s,2299161j)>] b.size #=> 19 I will skip an explanation of this helper method, as it is quite straightforward. Compute that difference between arrays b and a to obtain the missing beginning-of-month dates: c = b-a #=> [#<Date: 2013-12-01 ((2456628j,0s,0n),+0s,2299161j)>, # #<Date: 2014-05-01 ((2456779j,0s,0n),+0s,2299161j)>, # #<Date: 2014-07-01 ((2456840j,0s,0n),+0s,2299161j)>, # #<Date: 2014-08-01 ((2456871j,0s,0n),+0s,2299161j)>, # #<Date: 2015-02-01 ((2457055j,0s,0n),+0s,2299161j)>] Lastly, convert these dates to the desired format: c.map { |d| d.strftime('%b %Y') } #=> ["Dec 2013", "May 2014", "Jul 2014", "Aug 2014", "Feb 2015"] Addendum: after reading #Sid's answer, I see I could have saved myself some trouble in my helper method by using Date#next_month: def all_months_in_range(f,l) (12*(l.year-f.year)+l.month-f.month+1).times.map { |i| f.next_month(i) } end
This isn't very elegant, but it worked. I started with your original code, #SupremeA, and built off of that. require 'date' dates = ['Wed, 23 Oct 2013', 'Mon, 18 Nov 2013', 'Fri, 22 Nov 2013', 'Mon, 13 Jan 2014', 'Tue, 28 Jan 2014', 'Mon, 03 Feb 2014', 'Mon, 10 Feb 2014', 'Tue, 18 Feb 2014', 'Fri, 07 Mar 2014', 'Mon, 31 Mar 2014', 'Mon, 07 Apr 2014', 'Tue, 10 Jun 2014', 'Mon, 30 Jun 2014', 'Mon, 22 Sep 2014', 'Mon, 06 Oct 2014', 'Fri, 14 Nov 2014', 'Tue, 18 Nov 2014', 'Fri, 26 Dec 2014', 'Thu, 15 Jan 2015', 'Mon, 23 Mar 2015', 'Mon, 20 Apr 2015'] new_dates = [] dates.each { |d| new_dates.push(Date.parse(d).strftime('%B %Y')) } sorted_dates = new_dates.map { |s| Date.strptime(s, '%B %Y') }.sort.uniq missing_months = [] sorted_dates.each_cons(2) do |d1,d2| d = d1 while d.next_month != d2 missing_months.push(d.next_month.strftime('%B %Y')) d = d >> 1 end end p missing_months => ["December 2013", "May 2014", "July 2014", "August 2014", "February 2015"]