I need help entering a file so that the script I have will perform it's functionality. Currently, the script looks like this:
BEGIN{
FS=";"
}
NF !=9 {
printf("%s : %d\n", FILENAME, FNR);
}
vlad
#include<disclaimer.h>
I basically want to run the script and test a file named ftpoutbound.db . Can anyone help me with the steps I need to take to kick off the script and have it check that specific file. Thanks in advance for any help.
BEGIN{
FS=";"
}
NF !=9 {
printf("%s : %d\n", FILENAME, FNR);
}
vlad
#include<disclaimer.h>
I basically want to run the script and test a file named ftpoutbound.db . Can anyone help me with the steps I need to take to kick off the script and have it check that specific file. Thanks in advance for any help.