mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
8 lines
117 B
Text
8 lines
117 B
Text
|
#!/bin/sh
|
||
|
|
||
|
dst=$1
|
||
|
shift
|
||
|
|
||
|
sed -e "s/@name@/`echo $1 | sed 's/\.[l]*a//g'`/g" $dst > /tmp/$dst.$$
|
||
|
mv /tmp/$dst.$$ $dst
|