mirror of
https://github.com/MariaDB/server.git
synced 2025-08-31 22:22:30 +03:00
8 lines
117 B
Bash
Executable File
8 lines
117 B
Bash
Executable File
#!/bin/sh
|
|
|
|
dst=$1
|
|
shift
|
|
|
|
sed -e "s/@name@/`echo $1 | sed 's/\.[l]*a//g'`/g" $dst > /tmp/$dst.$$
|
|
mv /tmp/$dst.$$ $dst
|