Home > front end >  How to speed up a Windows batch file containing calls to a couple awk scripts?
How to speed up a Windows batch file containing calls to a couple awk scripts?

Time:07-27

I wrote a batch file which calls a couple awk scripts that I created (append and footnote):

@ECHO off

type compiler-books.txt | awk -f append -v filename="economics-books.txt" | awk -f footnote

I added some commands to the batch file to determine how much time is being taken to run the awk scripts:

@ECHO off

set start_date=           
  • Related