commands.sh

ipfs

all

Inter Planetary File System. A peer-to-peer hypermedia protocol. Aims to make the web more open.

More info →

Options (2)

-r, --recursiveboolean

Add a directory and its files recursively from local to the filesystem and print the relative hash

Example: ipfs add {{[-r|--recursive]}} {{path/to/directory}}
-o, --outputboolean

Save a remote file and give it a name but not pin it

Example: ipfs get {{hash}} {{[-o|--output]}} {{path/to/file}}

Examples (7)

Add a file from local to the filesystem, pin it, and print the relative hash

ipfs add path/to/file

Add a directory and its files recursively from local to the filesystem and print the relative hash

ipfs add [-r|--recursive] path/to/directory

Save a remote file and give it a name but not pin it

ipfs get hash [-o|--output] path/to/file

Pin a remote file locally

ipfs pin add hash

Display pinned files

ipfs pin ls

Unpin a file from the local storage

Remove unpinned files from local storage

ipfs repo gc
made by @shridhargupta | data from tldr-pages