There are several native Linux commands not available using heroku run, for example heroku run less filename and heroku run apropos. How do I get a list of all available heroku run commands?
Btw I’m just trying to look into some dirs and files from my application but for some reason I can’t view them with the available commands. I tried cd my_project/my_application && ls but it just shows the ls of my_project for some reason.
You can get command list doing a
lsin/binHeroku folder. Follow this steps:heroku run bashls /binRemember than you are in a cloned instance. All changes you do in filesystem will be dropped exiting shell.