yang
幼稚园
搜索更多相关主题的帖子: lsview lsvob 命令 条件
失踪天数:623
查看详细资料
TOP
paradise
小学一年级
失踪天数:1
失踪天数:78
版主
做人要低调
失踪天数:15
小学二年级
#! /usr/bin/perl use strict; use warnings; my $output = `/usr/atria/bin/cleartool lsview -l`; my @views = split(/\n\n/, $output); foreach(@views) { my($tag, $owner) = (split /\n/)[0, 9]; chomp $tag; chomp $owner; printf "%-30s%s\n", $tag, $owner; }
失踪天数:542