mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-01 04:35:23 +02:00
ipfs: add page (#2100)
This commit is contained in:
parent
8f6a40fe9a
commit
8f0cf8c653
1 changed files with 32 additions and 0 deletions
32
pages/common/ipfs.md
Normal file
32
pages/common/ipfs.md
Normal file
|
@ -0,0 +1,32 @@
|
|||
# ipfs
|
||||
|
||||
> Inter Planetary File System.
|
||||
> A peer-to-peer hypermedia protocol to make the web faster, safer, and more open.
|
||||
|
||||
- Add a file from local to the file system, pin it and print the relative hash:
|
||||
|
||||
`ipfs add {{filename}}`
|
||||
|
||||
- Add a folder and its files recursively from local to the file system and print the relative hash:
|
||||
|
||||
`ipfs add -r {{folder}}`
|
||||
|
||||
- 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`
|
Loading…
Add table
Reference in a new issue