Zum Inhalt springen
View in the app

A better way to browse. Learn more.

Fachinformatiker.de

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

[Perl] Passwort-Eingabe - Fehler bei Anzeige

Empfohlene Antworten

Veröffentlicht

Hallo zusammen,

ich habe mal wieder eine Verständnisfrage.

Ich habe eine Art Anmeldemaske - in diesem Fall etwas vereinfacht.

use Term::ReadKey;

use strict;

use warnings;


my $passphrase;


print 'Domain: ';

chomp(my $domain = <STDIN>);

print 'User: ';

chomp(my $user = <STDIN>);


[COLOR="Red"]print "Enter password: ";[/COLOR]


&getpassword();


print "\nTest: $domain $user $passphrase";


# Sub: Passwort eingeben

sub getpassword {

	ReadMode 'raw';

	while (ord(my $key = ReadKey(1)) != 13) {

		$passphrase.=$key;

		print "*";

	}

	ReadMode 'restore';

	return $passphrase;

}

Warum wird der Rot markierte "print" erst nach der Subroutine ausgeführt? Und alle "print" nach diesem erst, nachdem ich das Passwort mit Enter bestätigt habe?

Das Skript läuft auf einem Win XP Prof 32Bit Rechner.

Kann das jemand vielleicht mal bei sich testen? Oder habe ich einfach einen Fehler übersehen?

Ich habe die Befürchtnis, dass das ganze mit dem ReadKey zusammenhängt, aber ich kann es mir nicht wirklich erklären. Kann ich meine schönen Sternchen doch nicht verwirklichen? :rolleyes:

Viele Grüße

Archiv

Dieses Thema wurde archiviert und kann nicht mehr beantwortet werden.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.