Linux vacca.o2switch.net 4.18.0-553.123.2.lve.el8.x86_64 #1 SMP Thu May 7 23:17:13 UTC 2026 x86_64
/
proc
/
3281657
/
root
/
proc
/
thread-self
/
root
/
proc
/
3281657
/
cwd
/
lib64
/
python2.7
/
Tools
/
scripts
/
//proc/3281657/root/proc/thread-self/root/proc/3281657/cwd/lib64/python2.7/Tools/scripts/suff.py
#! /usr/bin/python2.7 # suff # # show different suffixes amongst arguments import sys def main(): files = sys.argv[1:] suffixes = {} for filename in files: suff = getsuffix(filename) if not suffixes.has_key(suff): suffixes[suff] = [] suffixes[suff].append(filename) keys = suffixes.keys() keys.sort() for suff in keys: print repr(suff), len(suffixes[suff]) def getsuffix(filename): suff = '' for i in range(len(filename)): if filename[i] == '.': suff = filename[i:] return suff if __name__ == '__main__': main()