In Neo4j bulk import I am getting unexpected error: Unable to parse header

Hello I am trying upload some big csv files into graph db using neo4j bulk import tool
here is my code

neo4j-admin import \

**--id-type** =string \

**--nodes** :AGENT= **"AGENT_HEADER.csv,nodes_AGENT_C_20190630.csv"** \

**--nodes** :CUSTOMER= **"CUSTOMER_HEADER.csv,nodes_CUSTOMER_C_20190630.csv"** \

**--nodes** :MERCHANT= **"MERCHANT_HEADER.csv,nodes_MERCHANT_C_20190630.csv"** \

**--nodes** :DM= **"DM_HEADER.csv,nodes_DM_C_20190630.csv"** \

**--nodes** :BILLER= **"BILLER_HEADER.csv,nodes_BILLER_C_20190630.csv"** \

**--nodes** :BANK= **"BANK_HEADER.csv,nodes_BANK_C_20190630.csv"** \

**--nodes** :NONLABEL= **"NONLABEL_HEADER.csv,nodes_NON_C_20190630.csv"** \

**--nodes** :ATM= **"ATM_HEADER.csv,nodes_ATM_C_20190630.csv"** \

**--nodes** :CARD= **"CARD_HEADER.csv,nodes_CARD_C_20190630.csv"** \

**--nodes** :REMITTER= **"REMITTER_HEADER.csv,nodes_REMITTER_C_20190630.csv"** \

**--relationships** :SENDMONEY= **"relationship_SENDMONEY-HEADER.csv,relationship_SENDMONEY_20190630.csv"** \

**--relationships** :CASHOUT= **"relationship_CASHOUT-HEADER.csv,relationship_CASHOUT_20190630.csv"** \

**--relationships** :CASHIN= **"relationship_CASHIN-HEADER.csv,relationship_CASHIN_20190630.csv"** \

**--relationships** :PAYMENT= **"relationship_PAYMENT-HEADER,relationship_PAYMENT_20190630.csv"** \

**--relationships** :DISBURSE= **"relationship_DISBURSE-MERCHANT-HEADER.csv,relationship_DISBURSE-MERCHANT_20190630.csv"** \

**--relationships** :DISBURSE= **"relationship_DISBURSE-DM-HEADER.csv,relationship_DISBURSE-DM_20190630.csv"** \

**--relationships** :PAYBILL= **"relationship_PAYBILL-HEADER.csv,relationship_PAYBILL_20190630.csv"** \

**--relationships** :IBANKING= **"relationship_IBANKING-HEADER.csv,relationship_IBANKING_20190630.csv"** \

**--relationships** :REMIT= **"relationship_REMIT-HEADER.csv,relationship_REMIT_20190630.csv"** \

**--relationships** :C2W= **"relationship_C2W-HEADER.csv,relationship_C2W_20190630.csv"** \

**--relationships** :ATMCO= **"relationship_ATMCO-HEADER.csv,relationship_ATMCO_20190630.csv"** \

**--relationships** :AIRTIME= **"relationship_AIRTIME-AGENT-HEADER.csv,relationship_AIRTIME-AGENT_20190630.csv"** \

**--relationships** :AIRTIME= **"relationship_AIRTIME-CUSTOMER-HEADER.csv,relationship_AIRTIME-CUSTOMER_20190630.csv"** \

**--relationships** :AIRTIME= **"relationship_AIRTIME-MERCHANT-HEADER.csv,relationship_AIRTIME-MERCHANT_20190630.csv"** \

**--relationships** :AIRTIME= **"relationship_AIRTIME-DM-HEADER.csv,relationship_AIRTIME-DM_20190630.csv"** \

**--relationships** :AIRTIME= **"relationship_AIRTIME-NONLABEL-HEADER.csv,relationship_AIRTIME-NON_20190630.csv"** \

**--relationships** :AIRTIME= **"relationship_AIRTIME-BILLER-HEADER.csv,relationship_AIRTIME-BILLER_20190630.csv"** \

**--relationships** :AIRTIME= **"relationship_AIRTIME-ATM-HEADER.csv,relationship_AIRTIME-ATM_20190630.csv"** \

**--relationships** :AIRTIME= **"relationship_AIRTIME-BANK-HEADER.csv,relationship_AIRTIME-BANK_20190630.csv"** \

**--relationships** :AIRTIME= **"relationship_AIRTIME-CARD-HEADER.csv,relationship_AIRTIME-CARD_20190630.csv"** \

**--relationships** :AIRTIME= **"relationship_AIRTIME-REMITTER-HEADER.csv,relationship_AIRTIME-REMITTER_20190630.csv"** \

**--high-io** =true \

**--ignore-missing-nodes** =true \

**--ignore-extra-columns** =true \

**--max-memory** =200g

node header is like this
ID(AGENT),SHOPNAME,DIVISION,DISTRICT,THANA
relation header is like
:TYPE,:START_ID(AGENT),:END_ID(CUSTOMER),TXNID,TIMESTAMP:datetime,AMOUNT:double,CHANNEL

this code is written as script file. so when I to run this script I am getting
unexpected error: Unable to parse header

can anyone help me why I am seeing this. all files and import.sh script is in same folder. so I think path problem won't be the issue. Kindly help me to solve this

Kalyan,

It looks like you forgot to include a : before ID. Your header file should read

:ID(AGENT),SHOPNAME,DIVISION,DISTRICT,THANA

I am not sure if this is the only issue, but it was likely one issue.
Please check this link for more information.

https://neo4j.com/docs/operations-manual/current/tools/import/file-header-format/

Also, when you paste your code it is useful to paste commands in the original format. Otherwise, it is difficult to determine whether the command was likely valid or not.

I hope this helps.