Skip to content

Commit

Permalink
Update setup.md
Browse files Browse the repository at this point in the history
add curl command as alternatives to wget
  • Loading branch information
ggrimes committed Mar 29, 2024
1 parent 99e4765 commit ce0527b
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions learners/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,9 @@ Below is a series of commands to download and unpack scripts folder.
# get the gitrepo as a zip file
wget https://github.com//carpentries-incubator/workflows-nextflow/archive/main.zip

#or
curl -L -o main.zip https://github.com//carpentries-incubator/workflows-nextflow/archive/main.zip

# unzip the script file
unzip main.zip 'workflows-nextflow-main/episodes/files/scripts*' -d .

Expand All @@ -98,6 +101,9 @@ Inside the `nf-training` folder download the workshop dataset from Figshare, [ht

```bash
$ wget --content-disposition https://ndownloader.figshare.com/files/28531743

# or curl
curl -L -o data.tar.gz https://ndownloader.figshare.com/files/28531743
```

Unpack gzipped tar file:
Expand Down

0 comments on commit ce0527b

Please sign in to comment.