Home > Net >  Download file from github in CLI?
Download file from github in CLI?

Time:10-03

I'm trying to download the enter image description here

raw button, and copy that link (direct link).

wget https://raw.githubusercontent.com/zellij-org/zellij/main/example/themes/tokyo-night-storm.yaml

CodePudding user response:

Replace /blob/ in URL using /raw/ that is do

wget https://github.com/zellij-org/zellij/raw/main/example/themes/tokyo-night-storm.yaml
  • Related