Skip to content

[TODO] Systematically compare functionalities -- system-installed magick vs. AppImage-d magick #4

@pdfkungfoo

Description

@pdfkungfoo

Do the following:

  1. Using self-installed /usr/local/bin/magick, run:

    for i in $(magick -list list) ; do
        magick -list $i > magick-system-${i}.list
    done
    
  2. Do the same for ImageMagick-xperimental-x86_64.AppImage. Run:

    for i in $(ImageMagick-xperimental-x86_64.AppImage -list list) ; do
        ImageMagick-xperimental-x86_64.AppImage -list $i > magick-AppImage-${i}.list
    done
    
  3. Then compare results:

    for i in magick-system-*.list; do
        sdiff -sbB -w 240 ${i} ${i/system/AppImage}
    done
    
  4. Evaluate. Draw conclusions. Fix what needs to be fixed.

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions