I downloaded files from ftp://cddis.nasa.gov/gnss/products/ionex
via
wget -r -nc ftp://cddis.nasa.gov/gnss/products/ionex
distribution by years from 1998 to 2016 and per years contain 365 or 366 days
It contains these files (or similar) for each day
I want to extract only the files beginning with "codg"
Create a simple script which will extract files from the current directory.
Then use a find command to iterate through the directories to do the operation of that script on every file.
The find command should be executed from the directory of your downloaded files. See
find(1)
man page and understand the options before executing.