update so code works with py2 or py3; update copyright notices
1 parent 3592e5c commit 59f54e2b42eb507c5ccf4dab544f0a2b53b22167
@tundra tundra authored on 11 May 2018
Showing 3 changed files
View
19
tdir
#!/usr//bin/env python2
#!/usr//bin/env python
"""
tdir - Display Formatted Directory Listings
Copyright (c) 2001-2014 TundraWare Inc., All Rights Reserved.
Copyright (c) 2001-2018 TundraWare Inc., All Rights Reserved.
"""
 
# python Library Imports
 
name = x
elif y != -1: # File has extension
ext = x[y:]
name = x[:y]
if not ExtList.has_key(ext):
if ext not in ExtList:
ExtList[ext]= []
else: # File has no extension
ext = ""
name = x
DIREND = "/\n"
else:
DIREND = "\n"
sys.stdout.write(dir.replace("\\", "/") + DIREND)
if SHOWDIR or SHOWFILE :
sys.stdout.write("\n")
 
if SHOWDIR or SHOWFILE:
sys.stdout.write("\n")
 
if len(DirList) > 0:
DirList.sort()
OutputColumns(DirList, True)
 
if len(FileList) > 0:
if SORTBYEXT:
ExtList = OrderByExtension(FileList)
Ext = ExtList.keys()
Ext = list(ExtList.keys())
Ext.sort()
for x in Ext:
FileList = ExtList[x]
if len(FileList) > 0:
 
def Usage():
UsageInfo = (
("tdir " + VERSION.split()[2] +
" - Copyright (c) 2001-2014 TundraWare Inc., All Rights Reserved. \n", ""),
" - Copyright (c) 2001-2018 TundraWare Inc., All Rights Reserved. \n", ""),
(" usage: tdir [-DRdefhtv] [-c #] [-s c] [-w #] [dir...] where,\n\n", ""),
("-D", "Do not display dot files\n"),
("-R", "Recurse down each named directory tree\n"),
("-c #", "Column width\n"),
View
4
tdir-license.txt
tdir - Copyright (c) 2001-2014 TundraWare Inc., All Rights Reserved
tdir - Copyright (c) 2001-2018 TundraWare Inc., All Rights Reserved
 
Permission is hereby granted for the duplication and use of tdir so
long as ALL the following conditions are met:
 
1) The user of tdir understands and agrees that this is experimental
software which is provided "AS-IS" with no warranties expressed
or implied by TundraWare Inc.
or implied by TundraWare Inc.
 
2) The user acknowledges tdir has NOT been tested for:
a) Correct operation
b) Freedom from unintended consequences
View
11
tdir.1
.SH SYNOPSIS:
tdir [-DRdefhtv] [-c\fICol Width\fP] [-s\fISep Character\fP] [-w\fIOutput Width\fP] [dir ...]
.SH DESCRIPTION
tdir displays a formatted listing for the directories you select,
grouping the file names by "extension". If you do not name a
grouping the file names by "extension". If you do not name a
specific directory, it defaults to the current directory.
 
For each directory selected, tdir will first display a columnated and
sorted list of subdirectories delimited by square brackets, followed
 
If either a directory or file name cannot fit in the column width, it will
be truncated so that it does fit. In that case, the last character of
the truncated name will be replaced with a carat (^) to let you know
what happened.
what happened.
 
The output is written to the standard output.
 
Normal exits return an exit status of 0. Command line errors or
Normal exits return an exit status of 0. Command line errors or
unreasonable parameters return an exit status of 2.
 
.SH OPTIONS
.TP
.B -c #
Set Column With to # characters. (default: 19)
.TP
.B -w #
Set the Output Width to # characters.
Set the Output Width to # characters.
On Unix-style systems, this defaults to the current terminal
width minus 1. On other systems it defaults to 80.
.SH COLUMN ARITHMETIC
tdir defines its columnar output based on the total output width and
 
Paths are displayed using '/' as the path separator. I can't help it
that Microsoft departed from The One True Way ;))
.SH COPYRIGHT
tdir is Copyright(c) 2001-2014 TundraWare Inc.
tdir is Copyright(c) 2001-2018 TundraWare Inc.
For terms of use, see the tdir-license.txt file in the program distribution.
If you install tdir on a FreeBSD system using the 'ports' mechanism, you will
also find this file in /usr/local/share/doc/tdir.
.SH AUTHOR
.nf
Tim Daneliuk
tundra@tundraware.com