mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2025-01-11 17:04:19 +01:00
7 lines
49 B
Bash
7 lines
49 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
rm -f $2
|
||
|
ln -s $1 $2
|
||
|
echo "$2 => $1"
|
||
|
|