7 lines
49 B
Bash
7 lines
49 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
rm -f $2
|
||
|
ln -s $1 $2
|
||
|
echo "$2 => $1"
|
||
|
|