2025-03-14 21:59:59 -06:00
|
|
|
# ipfs
|
|
|
|
|
|
|
|
|
|
> Inter Planetary File System.
|
|
|
|
|
> A peer-to-peer hypermedia protocol. Aims to make the web more open.
|
2025-12-16 10:20:31 -07:00
|
|
|
> More information: <https://docs.ipfs.tech/reference/kubo/cli/>.
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- 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:
|
|
|
|
|
|
2025-12-16 10:20:31 -07:00
|
|
|
`ipfs add {{[-r|--recursive]}} {{path/to/directory}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Save a remote file and give it a name but not pin it:
|
|
|
|
|
|
2025-12-16 10:20:31 -07:00
|
|
|
`ipfs get {{hash}} {{[-o|--output]}} {{path/to/file}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- 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`
|