tokyo-night-storm.yaml
colorcheme 文件。我以为我能做到
wget https://github.com/zellij-org/zellij/blob/main/example/themes/tokyo-night-storm.yaml
但我得到的是网页而不是主题文件。我怎样才能只检索实际文件而不是网页?
将 URL 中的
/blob/
替换为 /raw/
即 do
wget https://github.com/zellij-org/zellij/raw/main/example/themes/tokyo-night-storm.yaml
如果您想通过 gh cli 下载文件,而无需手头有原始链接:
curl -L $(gh api /repos/<owner>/<repo>/contents/<file> --jq .download_url) > <output_file>