qubes-linux-template-builder/appmenus/convert_apptemplate2vm.sh

14 lines
168 B
Bash
Executable File

#!/bin/sh
SRC=$1
DSTDIR=$2
VMNAME=$3
VMDIR=$4
DST=$DSTDIR/$VMNAME-$(basename $SRC)
sed -e "s/%VMNAME%/$VMNAME/g" \
-e "s %VMDIR% $VMDIR " \
<$SRC >$DST