Seconding this, you can also read a bit more about this here. You can check which contigs are in your file by looking for lines starting with ">". In your example above we'd expect to find just one line, starting with "> U00096.3"
You can do that on the command line using grep, e.g. grep "^>" fasta.file
More details on grep here