1
0
Fork 0
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:
lbonanomi 2019-05-04 09:49:20 -04:00 committed by Starbeamrainbowlabs
parent 97066cf733
commit f1043cce79

31
pages/linux/ipcrm.md Normal file
View 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`