I have a script called myscript.sh with multiple commands within it
#!/bin/sh
singularity shell -B /home/user/Desktop/ /home/user/image/some_image.simg
/home/user/miniconda/activate my_env
cd /app/app_folder/scripts
ls -ash
The first command (line 3) invokes a shell and I want the subsequent commands to run within the invoked shell.
How do I get this to work properly.