'touch' is not recognized as an internal or external command, operable program or batch file

后端 未结 9 1083
失恋的感觉
失恋的感觉 2020-12-13 17:56

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 ex

相关标签:
9条回答
  • 2020-12-13 18:37

    You can just use echo> in windows cmd i.epath/file.sqlite

    0 讨论(0)
  • 2020-12-13 18:45

    , used with copy to indicate missing parameters. This updates the files modified date. E.G. copy /b file1,,

    0 讨论(0)
  • 2020-12-13 18:47

    Fixed after running this command:

    npm install touch-cli -g
    

    After that I can run this:

    touch .babelrc
    
    0 讨论(0)
提交回复
热议问题