Skip to content

Commit

Permalink
Merge pull request #456 from carpentries-incubator/ocaisa-patch-1
Browse files Browse the repository at this point in the history
Add `-L` option to `curl` command
  • Loading branch information
reid-a committed Aug 7, 2024
2 parents 20aa87c + 0a7320a commit 6fef636
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion _episodes/16-transferring-files.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,10 @@ your local machine, using the URL of the current codebase:
> > ```
> > {{ site.local.prompt }} wget -O amdahl.tar.gz https://github.com/hpc-carpentry/amdahl/tarball/main
> > # or
> > {{ site.local.prompt }} curl -o amdahl.tar.gz https://github.com/hpc-carpentry/amdahl/tarball/main
> > {{ site.local.prompt }} curl -o amdahl.tar.gz -L https://github.com/hpc-carpentry/amdahl/tarball/main
> > ```
> > {: .language-bash}
> > The `-L` option to `curl` tells it to follow URL redirects (which `wget` does by default).
> {: .solution}
{: .challenge}

Expand Down

0 comments on commit 6fef636

Please sign in to comment.