Usually i start debug a java program by type jdb in terminal, then it will enter debugging mode, then i can input something like "stop at com.android.contacts.dirtyImport.DirtyImportManager:95" to tell jdb to stop at certain line.
Now here is the question: how can i combine these two cmds input one. Something like "jdb < stop at com.android.contacts.dirtyImport.DirtyImportManager:95". The reason i have this requirement is that i want to let vim automatic generate debug info and enter debug mode, stop make breakpoint.