@@ -44,8 +44,8 @@ Downloading and saving your data to a volume
4444--------------------------------------------
4545
4646There are *many* different ways of getting big sequence files to and
47- from Amazon. The two that I mostly use are ' curl' , which downloads
48- files from a Web site URL; and ' ncftp' , which is a robust FTP client
47+ from Amazon. The two that I mostly use are `` curl`` , which downloads
48+ files from a Web site URL; and `` ncftp`` , which is a robust FTP client
4949that let's you get files from an FTP site. Sequencing centers almost
5050always make their data available in one of these two ways.
5151
@@ -61,20 +61,20 @@ like::
6161 cd /mnt
6262 ncftp -u <username> ftp://path/to/FTP/site
6363
64- use 'cd' to find the right directory, and then::
64+ use ``cd`` to find the right directory, and then::
6565
6666 >> mget *
6767
6868to download the files. Then type 'quit'.
6969
70- You can also use ' curl' to download files one at a time from Web or FTP sites.
70+ You can also use `` curl`` to download files one at a time from Web or FTP sites.
7171For example, to save a file from a website, you could use::
7272
7373 cd /mnt
7474 curl -O http://path/to/file/on/website
7575
76- Once you have the files, figure out their size using ' du -sk' (e.g. after the
77- above, ' du -sk /mnt' will tell you how much data you have saved under /mnt),
76+ Once you have the files, figure out their size using `` du -sh`` (e.g. after the
77+ above, `` du -sh /mnt`` will tell you how much data you have saved under /mnt),
7878and go create and attach a volume (see :doc:`../amazon/index`).
7979
8080Any files in the '/mnt' directory will be lost when the instance is stopped or
0 commit comments