Neo4j-admin incremental import fails

When I run an incremental import on the Neo4j Community Edition using the following command:

../bin/neo4j-admin database import incremental neo4j --force  --overwrite-destination --skip-bad-relationships --skip-duplicate-nodes --multiline-fields --array-delimiter="|" @args.txt

I get this error:

Unmatched arguments from index 2: 'incremental', 'neo4j', '--force', '--overwrite-destination', '--skip-bad-relationships', '--skip-duplicate-nodes', '--multiline-fields', '--array-delimiter=|', '--nodes=State=header_State_n.csv,State.*_n.csv', '--nodes=City=header_City_n.csv,City.*_n.csv', '--nodes=Symptom=header_Symptom_n.csv,Symptom.*_n.csv', '--nodes=Patient=header_Patient_n.csv,Patient.*_n.csv', '--nodes=Disease=header_Disease_n.csv,Disease.*_n.csv', '--nodes=MetaNode=MetaNode_n.csv', '--relationships=LOCATED_IN=header_City-LOCATED_IN-State_r.csv,City-LOCATED_IN-State.*_r.csv', '--relationships=DIAGNOSED_WITH=header_Patient-DIAGNOSED_WITH-Disease_r.csv,Patient-DIAGNOSED_WITH-Disease.*_r.csv', '--relationships=LIVES_IN=header_Patient-LIVES_IN-City_r.csv,Patient-LIVES_IN-City.*_r.csv', '--relationships=SHOWS=header_Patient-SHOWS-Symptom_r.csv,Patient-SHOWS-Symptom.*_r.csv', '--relationships=PRESENTS=header_Disease-PRESENTS-Symptom_r.csv,Disease-PRESENTS-Symptom.*_r.csv', '--relationships=MetaRelationship=MetaRelationship_r.csv'```

What does: "Unmatched arguments from index 2" mean and how can if fix it?