$ cat test.db
record(ao, "aotest") {}
record(longout, "lotest") {}
$ /usr/lib/epics/bin/linux-x86_64/softIoc -d test.db
Starting iocInit
############################################################################
## EPICS R3.15.3-12+0~20170719135640.23+debian08~1.gbpaada8e $Date: Sun 2015-11-22 17:54:12 +0100$
## EPICS Base built Jul 19 2017
############################################################################
iocRun: All initialization complete
epics> dbl
lotest
aotest
epics> dbpf aotest 10
DBR_DOUBLE: 10
epics> dbpf lotest 10
DBR_LONG: 10 0xa
epics> dbpf aotest 0x10
DBR_DOUBLE: 16
epics> dbpf lotest 0x10
DBR_LONG: 0 0x0
epics>