Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

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
Source by www.networkworld.com #
 
PREVIOUS NEXT
Tagged: #command #create #jpeg #linux
ADD COMMENT
Topic
Name
6+6 =