New Entity AI

Draft 1.0:
Index


dugout-> filters.dugout



Make generic filters accessible to the environment


           
#!/bin/sh
###############################################################################
## COPYRIGHT (C) 2022-2023 NEW ENTITY OPERATIONS INC. ALL RIGHTS RESERVED
## CREATED: 2022/10/12
## INSTANCE: filters.dugout
## MODIFIED: 2023/12/20
## OVERVIEW: Make generic filters accessible to the environment
## HISTORY: VERSION 1.3
## -> 2022/10/12 (VERSION 0.1) Development
## -> 2023/12/06 (VERSION 1.0)
## -> 2023/12/17 (VERSION 1.2)
## -> 2023/12/20 (VERSION 1.3) Production
###############################################################################
## Filters can be used on any I/O task that produces output
###############################################################################
## -> Inquisitor filters
## Use: c  
## inquisitor package commands
filter_inquisitor_pc() {
 cut -d'"' -f 3- | awk -F "\"*,\"*" '{ print $2 }'
}
## inquisitor package and description
filter_inquisitor_pd() {
 cut -d'"' -f 3- | awk -F "\"*,\"*" '{ print $2 " | " $3 }'
}