Home > OS >  How to show .env file in using comand linux in terminal?
How to show .env file in using comand linux in terminal?

Time:11-28

(https://i.stack.imgur.com/Uq9zC.png) i tried to create .env file but there is no .env file exists

CodePudding user response:

Use ls -a to view hidden files

CodePudding user response:

The files starting with . consider as hidden files. ls command do not listed with hidden files

Try this which listed all files including hidden files

ls -a 
  • Related