瀏覽代碼

Disable shellcheck warning SC2086

master
Arun Prakash Jana 5 年之前
父節點
當前提交
9d336b77fa
沒有發現已知的金鑰在資料庫的簽署中 GPG 金鑰 ID: A75979F35C080412
共有 1 個檔案被更改,包括 2 行新增3 行删除
  1. +2
    -3
      plugins/launch

+ 2
- 3
plugins/launch 查看文件

@@ -19,16 +19,15 @@
# Shell: POSIX compliant
# Author: Arun Prakash Jana

# shellcheck disable=SC2012
# shellcheck disable=SC2086

IFS=':'

get_selection() {
if which fzf >/dev/null 2>&1; then
ls -H $PATH | sort | fzf
{ IFS=:; ls -H $PATH; } | sort | fzy
elif which fzy >/dev/null 2>&1; then
ls -H $PATH | sort | fzy
{ IFS=:; ls -H $PATH; } | sort | fzy
else
exit 1
fi


Loading…
取消
儲存