nextfileb
Returns one plus the FRAMENO of the last saved image
usage: nextfileb: [-h, --help]
#! @KPYTHON@
from KCWI import Procs
import argparse,sys
# parsing arguments
description = "Returns one plus the FRAMENO of the last saved image"
parser = argparse.ArgumentParser(description=description)
if __name__=="__main__":
args = parser.parse_args()
sys.stdout.write(str(Procs.get_nextfile(channel='blue'))+"\n")