Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 178 Bytes

File metadata and controls

10 lines (7 loc) · 178 Bytes

Fish script to convert all jpg images in dir to webp

Needs cwebp to be installed

 for file in *.jpg
      cwebp -q 80 $file -o (basename $file .jpg).webp
  end