Skip to main content
fixed formating according to convention
Source Link
Archemar
  • 32.3k
  • 18
  • 75
  • 107

ifIf you do not want to show console/terminal logs of bash  , use following command for example I starting inbuiltstart php server which generates request/response logs which I maydo not want  , I do it with this command

php -S localhost:8989 &> /dev/null

php -S localhost:8989 &> /dev/null

if you do not want to show console/terminal logs of bash  , use following command for example I starting inbuilt php server which generates request/response logs which I may not want  , I do it with this command

php -S localhost:8989 &> /dev/null

If you do not want to show console/terminal logs of bash, use following command for example I start php server which generates request/response logs which I do not want, I do it with this command:

php -S localhost:8989 &> /dev/null
Source Link

if you do not want to show console/terminal logs of bash , use following command for example I starting inbuilt php server which generates request/response logs which I may not want , I do it with this command

php -S localhost:8989 &> /dev/null