blob: ce62556bde1477d3198a42d9fe34f1f1bf522c92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
---
title: "List active calls on asterisk"
date: 2018-09-25
description: How to show active calls on an asterisk system
tags:
- asterisk
---
## Using the cli
```sh
watch -d -n1 'asterisk -rx “core show channels”'
```
|