Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

command to create jpeg in linux

$ sudo apt-get install imagemagick
Comment

command to create jpeg in linux

#!/bin/bash

for file in `ls *.png`
do
    newfile=`echo $file | sed 's/png/jpg/'`
    convert $file $newfile
done
Comment

PREVIOUS NEXT
Code Example
Shell :: present working directory in linux 
Shell :: create linux user with non interactive shell 
Shell :: generate table of content in readme.md 
Shell :: github create a new repository on the command line 
Shell :: shell script to convert yaml 
Shell :: diff command 
Shell :: delete github repository git bash 
Shell :: shell get creation date of file 
Shell :: how to copy a Directory and its content in ubuntu 
Shell :: linux kali download 
Shell :: git https basic access denied 
Shell :: how to fork a repo in git 
Shell :: what to do with the git config 
Shell :: unzip a file terminal 
Shell :: folder open command in linux 
Shell :: fedora error while loading shared libraries: libgconf-2.so.4: cannot open shared object file: No such file or directory 
Shell :: how to execute script and pass a parameterin linux 
Shell :: search command in powershell 
Shell :: wpa passphrase 
Shell :: create samba user ubuntu 
Shell :: jetbrains always add disable 
Shell :: git bash command 
Shell :: shell search history 
Shell :: add user with sudoer centos 
Shell :: download folder github 
Shell :: permission to var/cache 
Shell :: temeprature ubuntu command line 
Shell :: Install Deno - PowerShell (Windows) 
Shell :: cd n directories back 
Shell :: how to install lame linux 
ADD CONTENT
Topic
Content
Source link
Name
8+4 =