Posts by user192257 • 9 points
2 posts
-
0
votes6
answers1348
viewsA: Is there an alternative to system('cls') in PHP Console?
Try this: popen('cls || clear','w'); It will work because || means "or" remember in c? Well, something else the cls command doesn’t work on Linux should use clear. Try and let me know if it worked!…
-
0
votes2
answers63
viewsQ: How to get only a chunk of a command output
How do I show only the version number? Example: GIT_VERSION=$(git --version) echo $'git instalado com sucesso! Na versao: '$GIT_VERSION$'\n' The output I wish is "In version: 1.20.2". I have tried…