15 lines
176 B
Bash
Executable File
15 lines
176 B
Bash
Executable File
#!/bin/sh
|
|
SRC=$1
|
|
DST=$2
|
|
VMNAME=$3
|
|
VMDIR=$4
|
|
XDGICON=$5
|
|
|
|
sed \
|
|
-e "s/%VMNAME%/$VMNAME/" \
|
|
-e "s %VMDIR% $VMDIR " \
|
|
-e "s/%XDGICON%/$XDGICON/" \
|
|
<$SRC >$DST
|
|
|
|
|