gpt4 book ai didi

shell - ZSH 搜索函数定义

转载 作者:行者123 更新时间:2023-12-01 11:50:35 29 4
gpt4 key购买 nike

是否有一种机制可以从控制台获取函数定义而无需手动 grep 文件?

我正在寻找一种方法来快速找到已知函数名称的定义。

例如我想知道在哪里定义了“_kill”自动补全函数。

在 ruby​​ 中使用 pry 我可以得到这样的东西:

show-method find

From: app/models/search/object.rb @ line 2:

Number of lines: 7

def self.find(conditions = {}, options = {})
type = extract_object_type
raise 'do not call Search::Object directly' if type == 'Object'
search_logic = "Search::#{type.camelize}Logic".constantize.new(conditions, options)
search_logic.process!
search_logic.execute
end

最佳答案

我的以下作品:

$ autoload +X _kill # important step
$ whence -v _kill
_kill is a shell function from /usr/share/zsh/5.2/functions/_kill

Zsh Documentation – 9.1 Autoloading Functions

To load the definition of an autoloaded function myfunc without executing myfunc, use:

autoload +X myfunc

autoload +X 之后,您还可以使用 whence -f 查看实际功能

$ whence -f _kill
_kill () {
local curcontext="$curcontext" line state ret=1
typeset -A opt_args
_arguments -C '(-s -l 1)-n[specify signal number]:signal number' '(-n -l 1)-s[specify signal name]:signal:_signals -s' '(-n -s)-l[list signal names or numbers of specified signals]:*:signal:_signals' '(-n -s -l)1::signal:_signals -p -s' '*:processes:->processes' && ret=0
if [[ -n "$state" ]]
then
local pgrp='process-groups:: _wanted '
[[ -n "$opt_args[(i)-[ns]]${${(@)line:#--}}" && -prefix - ]] && pgrp+='-x '
pgrp+="process-groups expl 'process-group' compadd - 0"
_alternative 'processes:: _pids' 'jobs:: _jobs -t' $pgrp && ret=0
fi
return ret
}

关于shell - ZSH 搜索函数定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11627324/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com