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