New Entity AI

Draft 1.0:
Index


dugout-> shellrc_standard.dugout



Source the default root shell ENVIRONMENT


           
#!/bin/sh
###############################################################################
## COPYRIGHT (C) 2022-2024 NEW ENTITY OPERATIONS INC. ALL RIGHTS RESERVED
## CREATED: 2022/10/12
## INSTANCE: shellrc_root.dugout
## MODIFIED: 2024/01/24
## OVERVIEW:  "${PATH_DUGOUT}"/shellrc_root.dugout should be sourced by each
## individual user account in their home directory as needed, but it can
## also be ignored in favor of sourcing shellrc_standard.dugout.
## If you're customizing additional .dugout locations, you can
## add them as a source conditionally with: . "${PATH_DUGOUT}"/**
## as needed below
## HISTORY: VERSION 1.7
## -> 2022/10/16 (VERSION 1.0) Development
## -> 2023/11/20 (VERSION 1.1)
## -> 2023/12/06 (VERSION 1.2)
## -> 2023/12/17 (VERSION 1.3)
## -> 2023/12/28 (VERSION 1.4)
## -> 2024/01/01 (VERSION 1.5)
## -> 2024/01/13 (VERSION 1.6)
## -> 2024/01/24 (VERSION 1.7) Production
###############################################################################
### Requried sourced files
###############################################################################

### Always put ALL_static_variables.dugout first
### All Static Variables: Set system variables paths that can be accessed
### by all users
#if [ -f "${PATH_DUGOUT}"/static_variables.dugout ]; then
# . "${PATH_DUGOUT}"/static_variables.dugout
#fi
. "${PATH_DUGOUT}/static_variables.dugout"

### Highlight keywords by defining a colorPool and triggers
#if [ -f "${PATH_DUGOUT}"/highlight_keyword.dugout ]; then
# . "${PATH_DUGOUT}"/highlight_keyword.dugout
#fi
. "${PATH_DUGOUT}/highlight_keyword.dugout"

### Emulator art: provide visual emulator elements
#if [ -f "${PATH_DUGOUT}"/emulator_art.dugout ]; then
# . "${PATH_DUGOUT}"/emulator_art.dugout
#fi
. "${PATH_DUGOUT}/emulator_art.dugout"

### Always put System paths first
### System paths: Set system paths that can be accessed by all users
#if [ -f "${PATH_DUGOUT}"/system_paths.dugout ]; then
# . "${PATH_DUGOUT}"/system_paths.dugout
#fi
. "${PATH_DUGOUT}/system_paths.dugout"

### Open methods are provided to everyone
#if [ -f "${PATH_DUGOUT}"/open_methods.dugout ]; then
# . "${PATH_DUGOUT}"/open_methods.dugout
#fi
. "${PATH_DUGOUT}/open_methods.dugout"

### Shortcut Definitions
#if [ -f "${PATH_DUGOUT}"/shortcut_id.sh ]; then
# . "${PATH_DUGOUT}"/shortcut_id.dugout
#fi
. "${PATH_DUGOUT}/shortcut_id.dugout"

### Pretty things: Make things look pretty in your environment
#if [ -f ${PATH_DUGOUT}/_pretty_things.dugout ]; then
# . "${PATH_DUGOUT}"/_pretty_things.dugout
#fi
. "${PATH_DUGOUT}/_pretty_things.dugout"

### Lastly, modify your environment with custom settings before sourcing
### general dugout files

### Use custom environment settings
#if [ -f "${PATH_DUGOUT}"/program_enhance_shell.dugout ]; then
# . "${PATH_DUGOUT}"/program_enhance_shell.dugout
#fi
. "${PATH_DUGOUT}/program_enhance_shell.dugout"

###############################################################################
### Additonal sourced Files
###############################################################################

### Define your shell environment
#if [ -f "${PATH_DUGOUT}"/shell_display_root.dugout ]; then
#. "${PATH_DUGOUT}"/shell_display_root.dugout
#fi
. "${PATH_DUGOUT}/shell_display_root.dugout"

### Version: define your installation environment version
#if [ -f "${PATH_DUGOUT}"/version_id.dugout ]; then
#. "${PATH_DUGOUT}"/version_id.dugout
#fi
. "${PATH_DUGOUT}/version_id.dugout"

### Editor: define your default editor
#if [ -f "${PATH_DUGOUT}"/editor.dugout ]; then
# . "${PATH_DUGOUT}"/editor.dugout
#fi
. "${PATH_DUGOUT}/editor.dugout"

### connection_*: connect and perform tasks on provided endpoints
#if [ -f "${PATH_DUGOUT}"/connection_mainframe.dugout ]; then
#. "${PATH_DUGOUT}"/connection_mainframe.dugout
#fi
. "${PATH_DUGOUT}/connection_mainframe.dugout"

### Define an Operator
#if [ -f "${PATH_DUGOUT}"/operator_id.dugout ]; then
# . "${PATH_DUGOUT}"/operator_id.dugout
#fi
. "${PATH_DUGOUT}/operator_id.dugout"

### VPN id: Define available VPN routines and access points
#if [ -f "${PATH_DUGOUT}"/vpn_id.dugout ]; then
# . "${PATH_DUGOUT}"/vpn_id.dugout
#fi
. "${PATH_DUGOUT}/vpn_id.dugout"

### Shortcut Definitions: Custom (Non-standard and unique to your setup)
#if [ -f "${PATH_DUGOUT}"/shortcut_id_custom.sh ]; then
# . "${PATH_DUGOUT}"/shortcut_id_custom.dugout
#fi
. "${PATH_DUGOUT}/shortcut_id_custom.dugout"

### Manifest: define your TRINE environment helpers
#if [ -f "${PATH_DUGOUT}"/trine_manifest.dugout ]; then
# . "${PATH_DUGOUT}"/trine_manifest.dugout
#fi
. "${PATH_DUGOUT}/trine_manifest.dugout"

### Disk Operations: Automate archive tasks and disk operations
#if [ -f "${PATH_DUGOUT}"/disk_ops_id.dugout ]; then
# . "${PATH_DUGOUT}"/disk_ops_id.dugout
#fi
. "${PATH_DUGOUT}/disk_ops_id.dugout"

### Disk Operations: Automate custom archive tasks and disk operations
#if [ -f "${PATH_DUGOUT}"/disk_ops_id_custom.dugout ]; then
# . "${PATH_DUGOUT}"/disk_ops_id_custom.dugout
#fi
. "${PATH_DUGOUT}/disk_ops_id_custom.dugout"

### MSDOS Operations
#if [ -f "${PATH_DUGOUT}"/msdos_ops_id.dugout ]; then
# . "${PATH_DUGOUT}"/msdos_ops.dugout
#fi
. "${PATH_DUGOUT}/msdos_ops.dugout"

### Navigation Methods
#if [ -f "${PATH_DUGOUT}"/navigation_methdos.dugout ]; then
# . "${PATH_DUGOUT}"/navigation_methods.dugout
#fi
. "${PATH_DUGOUT}/navigation_methods.dugout"

### Navigation Methods Lockerlinks
#if [ -f "${PATH_DUGOUT}"/navigation_methdos_lockerlinks.dugout ]; then
# . "${PATH_DUGOUT}"/navigation_methods_lockerlinks.dugout
#fi
. "${PATH_DUGOUT}/navigation_methods_lockerlinks.dugout"

### Navigation Methods Special
#if [ -f "${PATH_DUGOUT}"/navigation_methdos_special.dugout ]; then
# . "${PATH_DUGOUT}"/navigation_methods_special.dugout
#fi
. "${PATH_DUGOUT}/navigation_methods_special.dugout"

### Network Operations
#if [ -f "${PATH_DUGOUT}"/network_ops_id.dugout ]; then
# . "${PATH_DUGOUT}"/network_ops_id.dugout
#fi
. "${PATH_DUGOUT}/network_ops_id.dugout"

### Operator: Update
#if [ -f "${PATH_DUGOUT}"/operator_update_instance.dugout ]; then
# . "${PATH_DUGOUT}"/operator_update_instance.dugout
#fi
. "${PATH_DUGOUT}/operator_update_instance.dugout"

### Program Enhancement: Add features to user-space programs
#if [ -f "${PATH_DUGOUT}"/program_enhance.dugout ]; then
# . "${PATH_DUGOUT}"/program_enhance.dugout
#fi
. "${PATH_DUGOUT}/program_enhance.dugout"

### Program Environment Setup
#if [ -f "${PATH_DUGOUT}"/program_env.dugout ]; then
# . "${PATH_DUGOUT}"/program_env.dugout
#fi
. "${PATH_DUGOUT}/program_env.dugout"

### Local Proxy Setup: Set local proxy environment variables
#if [ -f "${PATH_DUGOUT}"/program_env_wn.dugout ]; then
# . "${PATH_DUGOUT}"/program_env_wn.dugout
#fi
. "${PATH_DUGOUT}/proxy_env_wn.dugout"

### Special Proxy Setup: Override: When Needed
#if [ -f "${PATH_DUGOUT}"/proxy_special_env_wn.dugout ]; then
# . "${PATH_DUGOUT}"/proxy_special_env_wn.dugout
#fi
. "${PATH_DUGOUT}/proxy_special_env_wn.dugout"

### System blueprints: Establish ownership blueprints for your system
#if [ -f "${PATH_DUGOUT}"/system_blueprints.dugout ]; then
# . "${PATH_DUGOUT}"/system_blueprints.dugout
#fi
. "${PATH_DUGOUT}/system_blueprints.dugout"

### Run Program: Helpers to run internal programs installation
#if [ -f "${PATH_DUGOUT}"/run_program.dugout ]; then
# . "${PATH_DUGOUT}"/run_program.dugout
#fi
. "${PATH_DUGOUT}/run_program.dugout"

### Filters: Provide filters to environment operations
#if [ -f "${PATH_DUGOUT}"/filters.dugout ]; then
# . "${PATH_DUGOUT}"/filters.dugout
#fi
. "${PATH_DUGOUT}/filters.dugout"

### Modifiers: Provide system program modifiers to the environment
#if [ -f "${PATH_DUGOUT}"/modifiers.dugout ]; then
# . "${PATH_DUGOUT}"/modifiers.dugout
#fi
. "${PATH_DUGOUT}/modifiers.dugout"

###############################################################################
## graphics: virtual
###############################################################################

### Graphics: Virtual - Set up virtual graphical-interfaces
#if [ -f "${PATH_DUGOUT}"/graphics_virtual.dugout ]; then
# . "${PATH_DUGOUT}"/graphics_virtual.dugout
#fi
. "${PATH_DUGOUT}/graphics_virtual.dugout"

###############################################################################
## community: Not included, but can be sourced by the community
###############################################################################

### Community: Standard, but not included. You can find these scripts within
### various parts of the online community, but licenses may vary
#if [ -f "${PATH_DUGOUT}"/Z_community_scripts.dugout ]; then
# . "${PATH_DUGOUT}"/Z_community_scripts.dugout
#fi
. "${PATH_DUGOUT}/Z_community_scripts.dugout"

###############################################################################
## wrappers: DEM pipeline
###############################################################################

### Wrappers: Determine, Extend, and Modify your environment
### various parts of the online community, but licenses may vary
#if [ -f "${PATH_DUGOUT}"/wrappers.dugout ]; then
# . "${PATH_DUGOUT}"/wrappers.dugout
#fi
. "${PATH_DUGOUT}/wrappers.dugout"

###############################################################################
## linker
###############################################################################

### linker->trine: Internal Meta-explorer
. "${PATH_DUGOUT}/linker/trinechan.linker"

### linker-> explorer rig definitions
. "${PATH_DUGOUT}/linker/explorer.linker"

###############################################################################
## generic alias
###############################################################################
## generic sudo alias
#alias sudo='sudo '