/usr/games/sc_epgn is in scid 1:4.3.0.cvs20120311-1ubuntu3.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | #!/bin/sh
# sc_epgn: prints the PGN representation of selected games in a
# Scid database, with no comments, variations or nonstandard tags,
# making it useful for email correspondence chess since you don't
# want to send your opponent your notes and analysis.
# The "\" at the end of the comment line below is necessary! It means
# that the "exec" line is a comment to Tcl but not to /bin/sh.
# The next line restarts using tcscid, the Scid Tcl interpreter: \
exec tcscid "$0" "$@"
if {$argc < 2} {
puts "Usage: sc_epgn database game-number(s)"
puts "Example: sc_epgn mybase 1 2 3"
exit 1
}
set baseName [ lindex $argv 0 ]
if [catch { sc_base open -readonly $baseName }] {
puts "Error: could not open database"
exit 1
}
foreach i [lrange $argv 1 end] {
if [catch { sc_game load $i }] {
puts -nonewline "Error: could not load game number "
puts $i
exit 1
}
puts [sc_game pgn -tags 0 -comments 0 -var 0 -width 70]
}
|