DHristov
DHristov

Reputation: 1

Blinking text in shell script (Putty;Linux)

I am tailing a file using Putty.

I have this code:

tail -f /srv/ppp/ppp*.log | perl -pe 's/(TransactionID)/\e[4;38;5;255m$&\e[0m/g';

The following code makes the string "TransactionID" underlined and adds a color. My question is how can I also make the "TransactionID" string blink?

I couldn't find practical solutions to my issue in other similar posts...

Upvotes: 0

Views: 1778

Answers (2)

Cahedral
Cahedral

Reputation: 57

In putty:

TERMINAL -> ENABLE BLINKING TEXT

Upvotes: 2

ccarter1
ccarter1

Reputation: 31

Is it possible that your PuTTY configuration needs a switch to enable blinking text? I ask because the PuTTY Configuration on a Windows system has an explicit checkbox to "Enable Blinking text" in its "Terminal" configuration settings.

Upvotes: 3

Related Questions