nextimageb
Returns the full name of the next image
usage: nextimageb: [-h, --help]
#! @KPYTHON@
from KCWI import Procs
import argparse,sys
# parsing arguments
description = "Returns the full name of the next image"
parser = argparse.ArgumentParser(description=description)
if __name__=="__main__":
args = parser.parse_args()
sys.stdout.write(str(Procs.nextimage(channel='blue'))+"\n")