很不錯的PERL管道應用

ccwwff發表於2017-10-09
#! /usr/bin/perl

open(F, " ls |") or die;
# Open a pipe to read from
while(<F>){ print $_; }
# Prints list of UNIX files
#


相關文章