New Entity AI



dugout-> msdos_ops.dugout



Give your environment msdos-like simple command mappings


            
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/bin/sh
###############################################################################
## COPYRIGHT (C) 2020-2026 NEW ENTITY OPERATIONS INC. ALL RIGHTS RESERVED
## INSTANCE: network_ops_id.dugout
## MODIFIED: 2026/04/20
## OVERVIEW: Give your ENVIRONMENT msdos-like simple command mappings
##
## msdos_ops allows you to abstract MSDOS commands into your default terminal
## output program and use that emulator as if it were running MSDOS
###############################################################################
## 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
}