Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Shell return "PuTTYPuTTYPuTTY..."

After "composer global update" command I have found problem when using laravel bash commands.

For example after launch "php artisan migrate:refresh --seed --force" (that have worked well) automatically I found this text in the shell: "PuTTYPuTTYPuTTYPuTTYPuTTY..."

like image 929
user3482682 Avatar asked Nov 26 '14 20:11

user3482682


1 Answers

The putty FAQ describes this behavior. The command that you are running is issuing some non-printing characters, specifically Ctrl-E, which causes Putty to respond with a string that identifies the terminal.

like image 158
Kenster Avatar answered Sep 21 '22 20:09

Kenster