1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 16:22:08 +02:00
tldr/pages/common/ipfs.md
pixel 263508cd44
*: replace file(s) syntax and add path/to/ to more things (#9592)
* Fix file(s) and more path/to

* Update pages.it/common/rm.md

Co-authored-by: Emily Grace Seville <EmilySeville7cfg@gmail.com>

* thanks emily your suggestion was dogshit

https://github.com/tldr-pages/tldr/blob/main/contributing-guides/translation-templates/common-arguments.md

Co-authored-by: Emily Grace Seville <EmilySeville7cfg@gmail.com>
2022-12-06 16:47:56 +10:00

33 lines
715 B
Markdown

# ipfs
> Inter Planetary File System.
> A peer-to-peer hypermedia protocol. Aims to make the web more open.
> More information: <https://ipfs.io>.
- 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 {{path/to/directory}}`
- Save a remote file and give it a name but not pin it:
`ipfs get {{hash}} -o {{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:
`ipfs pin rm {{hash}}`
- Remove unpinned files from local storage:
`ipfs repo gc`