Windows – ‘touch’ is not recognized as an internal or external command, operable program or batch file

cmdcommand-line-interfacewindows

I work with laravel 5 , when i type in windows cmd this command
"touch storage\database.sqlite"
this error message rise
'touch' is not recognized as an internal or external command, operable program or batch file.
any hint to solve it ?

Best Answer

if you are using node.js just use npm to install it on Windows with this command:

npm install touch-cli -g

it will install the command line interface for touch, you can then use it the same as unix...