Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
\ls -1 /reg/d/psdm/MEC > file.txt

Or similar with adding some content:

Code Block
\ls -1 /reg/d/psdm/MEC | awk '{print "cdb convert -e " $1}' > test_convert_mec.sh

 

 

 

Make movie from images

Code Block
convert _tmp*.png _tmp.gif

#or in python
os.system("convert _tmp*.png _tmp.gif")

...