mirror of
https://github.com/Rockbox/rockbox.git
synced 2026-07-10 13:29:52 -04:00
14 lines
515 B
Perl
14 lines
515 B
Perl
# __________ __ ___.
|
|
# Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
# \/ \/ \/ \/ \/
|
|
#
|
|
while (<STDIN>) {
|
|
if(($_ =~ /^(\S+[\S ]+)/) && ($_ !~ /^People/)) {
|
|
s/\_/\\\_/g;
|
|
print "\\Forward{}\~$_";
|
|
}
|
|
}
|
|
|