?? uudecode.in
字號:
#!@PERL@## This is uudecode.pl from gnu sharutils-4.2.1.# Kang-Jin Lee <lee@arco.de># 20 October 2000# uuencode in Perl.# Copyright (C) 1995 Free Software Foundation, Inc.# Fran鏾is Pinard <pinard@iro.umontreal.ca>, 1995.# `perl uudecode.pl FILES' will decode all uuencoded files found in# all input FILES, stripping headers and other non uuencoded data.while (<>){ if (/^begin [0-7][0-7][0-7] ([^\n ]+)$/) { open (OUTPUT, ">$1") || die "Cannot create $1\n"; binmode OUTPUT; while (<>) { last if /^end$/; $block = unpack ("u", $_); print OUTPUT $block; } close OUTPUT; }}exit 0;
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -