add bash to commands

This commit is contained in:
Oliver Atkinson 2023-12-14 02:36:39 -07:00
parent ad58d4f3cd
commit be2aa79a37

View File

@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
# Adapted from LinuxConfig.org # Adapted from LinuxConfig.org
# GNU GPL v3.0+ # GNU GPL v3.0+
CMDS="mkdir touch mv rm ls grep cat vim" CMDS="bash mkdir touch mv rm ls grep cat vim"
USER=$1 USER=$1
CMDS=($CMDS) # convert to array CMDS=($CMDS) # convert to array