12 lines
457 B
Plaintext
12 lines
457 B
Plaintext
|
# This script gets run whenever Shell starts.
|
||
|
# For now, this is a crude approximation of a startup environment.
|
||
|
# In the short-term, this is mostly useful for automating testing a sequence of commands.
|
||
|
# Such as:
|
||
|
|
||
|
# ipconfig '/dev/nic0' '192.168.0.80' '255.255.255.0' '192.168.0.1'
|
||
|
# ipconfig '@dhcp' '/dev/nic0' 'start'
|
||
|
# cred '@add' '.\test' 'some-password-here'
|
||
|
# net '@mount' '/distro' '\\192.168.0.12\distro'
|
||
|
|
||
|
echo 'Welcome to Singularity'
|