Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

offline heic to jpg converter on linux

#!/bin/bash
for f in *.HEIC
do
echo "Working on file $f"
heif-convert $f $f.jpg
done
Comment

PREVIOUS NEXT
Code Example
Shell :: linux install docker 
Shell :: run dotnet core app 
Shell :: how to download grub with pop os 
Shell :: install prettier globaly 
Shell :: git flow init 
Shell :: pip install package to specific directory 
Shell :: install aws cli on ubuntu 
Shell :: windows download torchvision 
Shell :: react router install 
Shell :: git list remote branches 
Shell :: kubectl cleanup pods 
Shell :: pm2 remove id 
Shell :: unzip a tar.gz file in linux 
Shell :: get podman ubuntu 
Shell :: gitignore which rule 
Shell :: linux check docker version 
Shell :: curl ssl verify false cli 
Shell :: linux restart sendmail 
Shell :: heroku rebuild without commit 
Shell :: bash split string to array 
Shell :: docker remov all running containers 
Shell :: rename pc powershell 
Shell :: post curl request 
Shell :: docker execute command in container 
Shell :: grep count lines 
Shell :: find out a branch a parent branch git 
Shell :: linux ogg to wav 
Shell :: command line size of directory 
Shell :: vscode tab not working 
Shell :: git alias list 
ADD CONTENT
Topic
Content
Source link
Name
2+4 =