📄 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 + -