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