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: Linux Befehl ausführen

Empfohlene Antworten

Veröffentlicht

Hallo,

ich habe folgendes Problem. Ich habe einen Linux-Befehl (wie z.B. ls -l) den ich mit Perl aufrufen muss. Dieser Befehl gibt dann eine Ausgabe auf die Kommandozeile zurück.

Nun meine Frage. Wie kann ich den Befehl mit Perl ausführen? Und wie kann ich die Ausgabe in ein Variable schreiben?

Gruß

Christian

1. mit den Backtick-Operator (interpolierter Kontext) (Ausgabe als Array)

@lines = `ls -ali`;

2. mit system() [exec() gibt nicht die Ausgabe zurück]


@args = ("command", "arg1", "arg2");
system(@args) == 0 or die "system @args failed: $?"
# alternativ reicht auch ein einfacher string: system('ls -ali');
[/PHP]

3. mit Dateideskriptoren und Pipes

[PHP]
open(CONSOLE,"ls -ali |");
while (<CONSOLE>) {
#...
}

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.