ref alias oen

This commit is contained in:
TheK4n 2022-05-27 15:46:36 +03:00
parent 429e76d502
commit 88e507c0af
2 changed files with 6 additions and 2 deletions

View File

@ -102,5 +102,3 @@ alias dcd='docker-compose down'
alias drma='docker container prune'
alias drmi='docker image prune'
alias open='xdg-open'

View File

@ -168,3 +168,9 @@ vpn() {
)
}
open() {
test -e $1 || return 1
nohup xdg-open $1 1>/dev/null 2>&1 &
}