diff options
author | Joe Hunkeler <jhunkeler@gmail.com> | 2015-08-11 16:51:37 -0400 |
---|---|---|
committer | Joe Hunkeler <jhunkeler@gmail.com> | 2015-08-11 16:51:37 -0400 |
commit | 40e5a5811c6ffce9b0974e93cdd927cbcf60c157 (patch) | |
tree | 4464880c571602d54f6ae114729bf62a89518057 /pkg/system/sort.com | |
download | iraf-osx-40e5a5811c6ffce9b0974e93cdd927cbcf60c157.tar.gz |
Repatch (from linux) of OSX IRAF
Diffstat (limited to 'pkg/system/sort.com')
-rw-r--r-- | pkg/system/sort.com | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/pkg/system/sort.com b/pkg/system/sort.com new file mode 100644 index 00000000..4b66ac5f --- /dev/null +++ b/pkg/system/sort.com @@ -0,0 +1,10 @@ +# Common for the SORT program. + +int column # column to be sorted (if nonzero) +int ignore_whitespace # ignore leading whitespace +int numeric_sort # sort numerically rather than alphabetically +int reverse_sort # reverse the sense of the sort +int use_strsrt # ok to use standard STRSRT routine? + +common /srtcom/ column, ignore_whitespace, numeric_sort, reverse_sort, + use_strsrt |