A Digital Life

My Notebook

View My GitHub Profile

  • About
  • 11 January 2019

    Convert *.heic* files to *.jpg*

    by kerner1000


    sudo apt-get install libheif-examples
    for file in *.heic; do heif-convert $file ${file/%.heic/_converted.jpg}; done
    

    If sucessful, delete all heic files:

    rm *.heic
    
    tags: files and folders - pictures - terminal