8000 GitHub - nicolai86/utils: tiny golang organizational helpers
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

nicolai86/utils

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

utils

a random bunch of binaries written to help me organize my files.

nef to jpeg

apt-get install ufraw gimp-ufraw 
for file in $files; do 
  img=$(echo $file | sed 's/.NEF/.jpg/g')  
  dir=$(dirname $file)

  if [[ -e $img ]]; then 
    rm $file
    echo "exists"
  else 
    ufraw-batch --out-type=jpeg --out-path=$dir $file
    if [[ -e $img ]]; then
      rm $file
      echo removed $file
    fi
  fi
done

About

tiny golang organizational helpers

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

0