File: Fsort

package info (click to toggle)
pyferret 7.6.5-10
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 138,136 kB
  • sloc: fortran: 240,609; ansic: 25,235; python: 24,026; sh: 1,618; makefile: 1,123; pascal: 569; csh: 307; awk: 18
file content (17 lines) | stat: -rwxr-xr-x 638 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#! /bin/sh
# sort a list of names given as arguments into increasing
# order based on their ~nnn~ version number extensions
# at most one name should be without ~nnn~

# example usage:  Fsort metafile.plt*
# example in context:	animate `Fsort metafile.plt*`
# ... or in a more complex example
#	animate start_frame `Fsort series1.plt*` `Fsort series2.plt*` end_frame

echo "$*" | awk -f $FER_DIR/bin/Fsort.nawk

# Note:
# Here is an alternative version that uses sort for the "tilda" filenames
# and sed to put the filename with no tilda version number at the end:
# ls !* | sort -t\~ +1n | sed -e '/\~/\!h' -e '/\~/\!d' -e '$p' -e '$x'