tldr/pages/common/ipfs.md

34 lines
669 B
Markdown
Raw Normal View History

2018-05-09 08:28:33 +01:00
# ipfs
> Inter Planetary File System.
> A peer-to-peer hypermedia protocol.
2019-06-05 09:05:51 +01:00
> More information: <https://ipfs.io>.
2018-05-09 08:28:33 +01:00
- Add a file from local to the file system, pin it and print the relative hash:
`ipfs add {{filename}}`
- Add a directory and its files recursively from local to the file system and print the relative hash:
2018-05-09 08:28:33 +01:00
`ipfs add -r {{directory}}`
2018-05-09 08:28:33 +01:00
- Save a remote file and give it a name but not pin it:
`ipfs get {{hash}} -o {{filename}}`
- Pin a remote file locally:
`ipfs pin add {{hash}}`
- Display pinned files:
`ipfs pin ls`
- Unpin a file from the local storage:
`ipfs pin rm {{hash}}`
- Remove unpinned files from local storage:
`ipfs repo gc`