New Entity AI

Draft 1.0:
Index


dugout-> msdos_ops.dugout



Give your environment msdos-like simple command mappings


           

#!/bin/sh
###############################################################################
## COPYRIGHT (C) 2022-2023 NEW ENTITY OPERATIONS INC. ALL RIGHTS RESERVED
## CREATED: 2022/02/13
## INSTANCE: network_ops_id.dugout
## MODIFIED: 2023/12/20
## OVERVIEW: Give your ENVIRONMENT msdos-like simple command mappings
## HISTORY: VERSION 1.3
## -> 2022/02/13 (VERSION 1.0) Development
## -> 2023/11/18 (VERSION 1.1)
## -> 2023/12/17 (VERSION 1.2)
## -> 2023/12/20 (VERSION 1.3) Production
###############################################################################
## MSDOS Operations
###############################################################################
## For basic MS DOS support
msdos_dir() {
 ls
}
msdos_copy() {
 cp
}
msdos_rename() {
 mv
}
msdos_md() {
 mkdir
}
msdos_rd() {
 rmdir
}
msdos_del() {
 rm-i
}