The file exists, I see it in the relative path scripts/start_app.sh. I have the shebang correct at the top. I'm using Ubuntu 22.04 and I've updated the packages by running:
sudo dpkg --add-architecture i386
sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386
./start_app.sh in terminal still yields: "No such file or directory"
I try to dos2unix the file. Doesn't work:
$dos2unix start_app.sh
dos2unix: start_app.sh: No such file or directory
dos2unix: Skipping start_app.sh, not a regular file.
Can someone help me with this?
(my .sh file)
#!/bin/bash
python manage.py runserver 0.0.0.0:8000