qubes-core-admin-linux/appmenus-scripts/convert-apptemplate2vm.sh
2014-07-10 16:28:05 +02:00

17 lines
217 B
Bash
Executable File

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