3 lines
98 B
Bash
Executable File
3 lines
98 B
Bash
Executable File
#!/bin/bash
|
|
who | cut -d' ' -f1 | sort -u | wc -l | xargs echo "active_user_count=" | sed 's/ //'
|