mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 07:44:48 -05:00
10 lines
121 B
Bash
Executable file
10 lines
121 B
Bash
Executable file
#!/bin/sh
|
|
|
|
rm -f "$2"
|
|
if test "$OSTYPE" = msdosdjgpp; then
|
|
cp "$1" "$2"
|
|
else
|
|
ln -s "$1" "$2"
|
|
fi
|
|
echo "$2 => $1"
|
|
|