View convert_to_webp.sh
#!/bin/bash | |
isDir() | |
{ | |
local dirName=$1 | |
if [ -d $dirName ]; then | |
echo true | |
else | |
echo false | |
fi |