/etc/adios/skel/templates/replay_bp.tmpl is in libadios-bin 1.13.0-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #!/bin/bash
set -e
#bootstrap a skeletal app using a bp file
skeldump ${bpfile} > ${yamlfile}
#if not $noxml
skel xml ${project} #if $force #-f #end if#-y ${yamlfile}
#end if
skel makefile ${project} #if $force #-f #end if#-y ${yamlfile}
skel submit ${project} #if $force #-f #end if#-y ${yamlfile}
make
|