AskOverflow.Dev

AskOverflow.Dev Logo AskOverflow.Dev Logo

AskOverflow.Dev Navigation

  • 主页
  • 系统&网络
  • Ubuntu
  • Unix
  • DBA
  • Computer
  • Coding
  • LangChain

Mobile menu

Close
  • 主页
  • 系统&网络
    • 最新
    • 热门
    • 标签
  • Ubuntu
    • 最新
    • 热门
    • 标签
  • Unix
    • 最新
    • 标签
  • DBA
    • 最新
    • 标签
  • Computer
    • 最新
    • 标签
  • Coding
    • 最新
    • 标签
主页 / unix / 问题 / 697349
Accepted
bryan hunt
bryan hunt
Asked: 2022-03-31 03:48:17 +0800 CST2022-03-31 03:48:17 +0800 CST 2022-03-31 03:48:17 +0800 CST

为什么 zsh 不扩展在函数“(:a)”中定义的这个 glob

  • 772

脚本的第二行仅在我通过执行触发全局扩展时才有效echo。我不明白为什么。这是命令,它的执行是为了提供一些上下文。

函数定义:

~/ cat ~/.zsh/includes/ascii2gif
ascii2gif () {
        setopt extendedglob
        input=$(echo ${1}(:a))
        _path=${input:h}
        input_f=${input:t}
        output_f=${${input_f}:r}.gif
        cd $_path
        nerdctl run --rm -v $_path:/data asciinema/asciicast2gif -s 2 -t solarized-dark $input_f $output_f
}

激活 ascii2gif 函数的函数调试..

~/ typeset -f -t ascii2gif

调试功能执行:

~/ ascii2gif ./demo.cast
+ascii2gif:1> input=+ascii2gif:1> echo /Users/b/demo.cast
+ascii2gif:1> input=/Users/b/demo.cast
+ascii2gif:2> _path=/Users/b
+ascii2gif:3> input_f=demo.cast
+ascii2gif:4> output_f=demo.gif
+ascii2gif:5> cd /Users/b
+_direnv_hook:1> trap -- '' SIGINT
+_direnv_hook:2> /Users/b/homebrew/bin//direnv export zsh
+_direnv_hook:2> eval ''
+_direnv_hook:3> trap - SIGINT
+ascii2gif:6> nerdctl run --rm -v /Users/b:/data asciinema/asciicast2gif -s 2 -t solarized-dark demo.cast demo.gif
==> Loading demo.cast...
==> Spawning PhantomJS renderer...
==> Generating frame screenshots...
==> Combining 40 screenshots into GIF file...
==> Done.

我尝试了许多变体来尝试强制扩展input=${~1}(:a)等,但无济于事。有什么建议么?显然脚本有效,但似乎次优。

zsh wildcards
  • 2 2 个回答
  • 221 Views

2 个回答

  • Voted
  1. Best Answer
    muru
    2022-03-31T04:09:09+08:002022-03-31T04:09:09+08:00

    那是因为您在这里尝试使用修饰符的方式是a用于通配符,并且不会发生通配符(因为通配符通常会导致多个单词,因此不会在需要单个单词的上下文中发生)。因此,您依赖于在命令替换中发生的通配,然后将结果分配给变量。var=WORD

    由于a修饰符可用于参数扩展,但应用方式不同,您可以尝试:

    input=${1:a}
    

    例如:

    % cd /tmp
    % foo() { input=${1:a}; typeset -p input; }
    % foo some-file
    typeset -g input=/tmp/some-file
    
    • 5
  2. steeldriver
    2022-03-31T04:21:20+08:002022-03-31T04:21:20+08:00

    /u muru的答案看起来是解决这个问题的正确方法,但它不扩展的原因是文件名生成(通配符)不会发生在标量分配中(它发生在数组分配中,因为 glob - 通常 -可能返回多个匹配项):

    来自man zshoptions:

       GLOB_ASSIGN <C>
              If this option is set, filename generation  (globbing)  is  per‐
              formed on the right hand side of scalar parameter assignments of
              the form `name=pattern (e.g. `foo=*').  If the result  has  more
              than  one  word  the  parameter  will become an array with those
              words as arguments. This option is provided for  backwards  com‐
              patibility  only: globbing is always performed on the right hand
              side of array  assignments  of  the  form  `name=(value)'  (e.g.
              `foo=(*)')  and  this form is recommended for clarity; with this
              option set, it is not possible to  predict  whether  the  result
              will be an array or a scalar.
    

    所以

    $ zsh -c 'f=${1}(:a); echo $f' zsh file.txt
    file.txt(:a)
    

    但

    $ zsh -c 'f=(${1}(:a)); echo $f' zsh file.txt
    /home/steeldriver/dir/file.txt
    
    • 3

相关问题

  • 什么情况下路径中最先找到的可执行文件不会被使用

  • 符号链接所有点文件和目录

  • 如何在`zsh`中增加一个动态命名的变量

  • 为什么我不能在 zsh 中定义一个名为 path 的只读变量?

  • mv *.cache.{js,woff} sub_folder - 作为 shell 命令工作,但不在 Makefile 内

Sidebar

Stats

  • 问题 205573
  • 回答 270741
  • 最佳答案 135370
  • 用户 68524
  • 热门
  • 回答
  • Marko Smith

    模块 i915 可能缺少固件 /lib/firmware/i915/*

    • 3 个回答
  • Marko Smith

    无法获取 jessie backports 存储库

    • 4 个回答
  • Marko Smith

    如何将 GPG 私钥和公钥导出到文件

    • 4 个回答
  • Marko Smith

    我们如何运行存储在变量中的命令?

    • 5 个回答
  • Marko Smith

    如何配置 systemd-resolved 和 systemd-networkd 以使用本地 DNS 服务器来解析本地域和远程 DNS 服务器来解析远程域?

    • 3 个回答
  • Marko Smith

    dist-upgrade 后 Kali Linux 中的 apt-get update 错误 [重复]

    • 2 个回答
  • Marko Smith

    如何从 systemctl 服务日志中查看最新的 x 行

    • 5 个回答
  • Marko Smith

    Nano - 跳转到文件末尾

    • 8 个回答
  • Marko Smith

    grub 错误:你需要先加载内核

    • 4 个回答
  • Marko Smith

    如何下载软件包而不是使用 apt-get 命令安装它?

    • 7 个回答
  • Martin Hope
    user12345 无法获取 jessie backports 存储库 2019-03-27 04:39:28 +0800 CST
  • Martin Hope
    Carl 为什么大多数 systemd 示例都包含 WantedBy=multi-user.target? 2019-03-15 11:49:25 +0800 CST
  • Martin Hope
    rocky 如何将 GPG 私钥和公钥导出到文件 2018-11-16 05:36:15 +0800 CST
  • Martin Hope
    Evan Carroll systemctl 状态显示:“状态:降级” 2018-06-03 18:48:17 +0800 CST
  • Martin Hope
    Tim 我们如何运行存储在变量中的命令? 2018-05-21 04:46:29 +0800 CST
  • Martin Hope
    Ankur S 为什么 /dev/null 是一个文件?为什么它的功能不作为一个简单的程序来实现? 2018-04-17 07:28:04 +0800 CST
  • Martin Hope
    user3191334 如何从 systemctl 服务日志中查看最新的 x 行 2018-02-07 00:14:16 +0800 CST
  • Martin Hope
    Marko Pacak Nano - 跳转到文件末尾 2018-02-01 01:53:03 +0800 CST
  • Martin Hope
    Kidburla 为什么真假这么大? 2018-01-26 12:14:47 +0800 CST
  • Martin Hope
    Christos Baziotis 在一个巨大的(70GB)、一行、文本文件中替换字符串 2017-12-30 06:58:33 +0800 CST

热门标签

linux bash debian shell-script text-processing ubuntu centos shell awk ssh

Explore

  • 主页
  • 问题
    • 最新
    • 热门
  • 标签
  • 帮助

Footer

AskOverflow.Dev

关于我们

  • 关于我们
  • 联系我们

Legal Stuff

  • Privacy Policy

Language

  • Pt
  • Server
  • Unix

© 2023 AskOverflow.DEV All Rights Reserve