From edf7f8c2b4279f0ce73f2e717c818eb50011e568 Mon Sep 17 00:00:00 2001 From: Maxim Likhachev Date: Wed, 12 Feb 2020 20:54:17 +0300 Subject: [PATCH] bash: aliases: lnbin -i --- etc/shell/bash/aliases | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/shell/bash/aliases b/etc/shell/bash/aliases index f437e74..a8f64a8 100755 --- a/etc/shell/bash/aliases +++ b/etc/shell/bash/aliases @@ -367,7 +367,7 @@ mvbin() { #- Создание символической ссылки на файл $1 в $SHELLRC/bin/$2 lnbin() { - ln -s $(realpath $1) $SHELLRC/bin/$2/$1 + ln -i -s $(realpath $1) "$SHELLRC/bin/$2/$1" } #}}} ###########################################################################