Sisyphus repository
Last update: 1 october 2023 | SRPMs: 18631 | Visits: 37517803
en ru br
ALT Linux repos
5.0: 4.64L-alt5.1
4.1: 4.64L-alt5
4.0: 4.64L-alt4.1
3.0: 4.58L-alt4
+backports:4.64L-alt0.M30.4

Group :: Networking/Mail
RPM: pine

 Main   Changelog   Spec   Patches   Sources   Download   Gear   Bugs and FR  Repocop 

#!/bin/awk -f

# Author: Igor Vlasenko <viy@altlinux.org>

BEGIN {
if (ARGV[1] == "-h" || $ARGV[1] == "--help") {
delete ARGV[1]
print "usage: filterpineconf <pine user/syctem config file>"
print "example: filterpineconf ~/.pinerc"
print "filters pine config file from comments, empty assigments, etc,"
print "only showing parameters actually set up in config file."
print "useful for understanding current pine configuration."
exit
}
}
/^\s*$/ {next}
/^\s*#/ {next}
/\=\s*$/{next}
{print $0}
 
design & coding: Vladimir Lettiev aka crux © 2004-2005, Andrew Avramenko aka liks © 2007-2008
current maintainer: Michael Shigorin