Starting better version

(And not whatever hacky version I first though of)
This commit is contained in:
KAuser2094
2023-03-06 10:57:47 +00:00
parent f5280a1b1b
commit 8be32f90da
3 changed files with 35 additions and 13 deletions
+25 -6
View File
@@ -1,12 +1,31 @@
# Installs yolo in the user's CMD directory ( change $CMD to desired file path )
# Installs yolo in the user's home directory
TARGET_DIR=$CMD
TARGET_DIR=~/yolo-ai-cmdbot
TARGET_FULLPATH=$TARGET_DIR/yolo.py
mkdir -p $TARGET_DIR
cp yolo.py $TARGET_DIR
cp prompt.txt $TARGET_DIR/yolo_prompt.txt #changed this so it doesnt conflict with possible future prompts
cp yolo.py prompt.txt $TARGET_DIR
chmod +x $TARGET_FULLPATH
# Adds batch file to System32 so you can call it in powershell
cp yolo.bat C:/Windows/System32
#Linux/Mac
# Creates two aliases for use
alias yolo=$TARGET_FULLPATH
alias computer=$TARGET_FULLPATH
# Add the aliases to the logon scripts
echo "alias yolo=$TARGET_FULLPATH" >> ~/.bash_aliases
echo "alias computer=$TARGET_FULLPATH" >> ~/.bash_aliases
# Windows
# Copy yolo.bat to System32 or :
# (This doesn't work, havent figured it out)
# Creates two aliases for use
alias yolo=$TARGET_FULLPATH
alias computer=$TARGET_FULLPATH
# Add the aliases to the logon scripts
echo "alias yolo=$TARGET_FULLPATH" >> ~/.bash_aliases
echo "alias computer=$TARGET_FULLPATH" >> ~/.bash_aliases