in reply to OT: What happened to uuencode?
To encode:
To decode:#!/bin/sh perl -i.orig -ple'BEGIN{ $/=undef} $_ = pack 'u', $_' $1
#!/bin/sh perl -i.uu -ple'BEGIN{ $/=undef} $_ = unpack 'u', $_' $1
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: OT: What happened to uuencode?
by Anonymous Monk on Jul 15, 2015 at 15:42 UTC |