Hello guys so I was trying to create a script that lists all files in the current directory, the parent of the working directory, and the /boot directory here is what I tried
#!/bin/bash
ls -la ls -la ../ ls -la /boot
I have already made the file executable. The problem comes in when I run it. The error states;
ls: cannot access 'ls': No such file or directory
What could I be doing wrong?