mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
ipcrm: add page (#2974)
This commit is contained in:
parent
97066cf733
commit
f1043cce79
1 changed files with 31 additions and 0 deletions
31
pages/linux/ipcrm.md
Normal file
31
pages/linux/ipcrm.md
Normal file
|
@ -0,0 +1,31 @@
|
|||
# ipcrm
|
||||
|
||||
> Delete IPC (Inter-process Communication) resources.
|
||||
|
||||
- Delete a shared memory segment by ID:
|
||||
|
||||
`ipcrm --shmem-id {{shmem_id}}`
|
||||
|
||||
- Delete a shared memory segment by key:
|
||||
|
||||
`ipcrm --shmem-key {{shmem_key}}`
|
||||
|
||||
- Delete an IPC queue by ID:
|
||||
|
||||
`ipcrm --queue-id {{ipc_queue_id}}`
|
||||
|
||||
- Delete an IPC queue by key:
|
||||
|
||||
`ipcrm --queue-key {{ipc_queue_key}}`
|
||||
|
||||
- Delete a semaphore by ID:
|
||||
|
||||
`ipcrm --semaphore-id {{semaphore_id}}`
|
||||
|
||||
- Delete a semaphore by key:
|
||||
|
||||
`ipcrm --semaphore-key {{semaphore_key}}`
|
||||
|
||||
- Delete all IPC resources:
|
||||
|
||||
`ipcrm --all`
|
Loading…
Add table
Reference in a new issue