dugout-> modifiers.dugout
Make generic program modifiers accessible to the environment
#!/bin/sh
###############################################################################
## COPYRIGHT (C) 2022-2023 NEW ENTITY OPERATIONS INC. ALL RIGHTS RESERVED
## CREATED: 2023/12/07
## INSTANCE: modifiers.dugout
## MODIFIED: 2023/12/20
## OVERVIEW: Make generic program modifiers accessible to the environment
## HISTORY: VERSION 1.1
## -> 2023/12/07 (VERSION 1.0) Development
## -> 2023/12/20 (VERSION 1.1) Production
###############################################################################
## Modifiers can be used on any I/O task that produces output from a system program
###############################################################################
## aplay get a list of unique available audio output interfaces/devices
modifier_aplay_ad() {
aplay -l | awk -F ':' '{print $1 $2}' | uniq | grep -v "^ "
}
## journalctl
## View I/O journal
modifier_journalctl_view_I_O_journal() {
sudo journalctl -k --grep="IN=.*OUT=.*"
}