mirror of
https://abf.rosa.ru/djam/openssl3.1.git
synced 2025-02-23 08:42:54 +00:00
13 lines
121 B
Bash
13 lines
121 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
LINK="$@"
|
||
|
|
||
|
FILE=$(ls -l $LINK | awk '{ print $11}')
|
||
|
|
||
|
[[ ! "$FILE" =~ ".xz" ]] && ln -sf $FILE.xz $LINK
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|