https://github.com/kaushiksk/imgrab
A light-weight image download manager written in bash
https://github.com/kaushiksk/imgrab
bash image-downloader
Last synced: 3 months ago
JSON representation
A light-weight image download manager written in bash
- Host: GitHub
- URL: https://github.com/kaushiksk/imgrab
- Owner: kaushiksk
- License: mit
- Created: 2016-07-23T19:25:56.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2017-10-16T14:32:01.000Z (over 8 years ago)
- Last Synced: 2025-07-19T23:58:13.630Z (12 months ago)
- Topics: bash, image-downloader
- Language: Shell
- Size: 14.6 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# imgrab
A light-weight image download manager written in bash
## INSTALLATION
unzip imgrab-master.zip
cd imgrab-master
sh configure
Move the ~/bin/imgrab file to any folder you wish that is callable through ~/.profile
## USAGE:
imgrab [OPTIONS] [url]
Downloads all images from a specified url.
Default formats downloaded : png,jpg,jpeg,gif,tif,bmp
Default download location : sub-directory in current directory
## OPTIONS:
-h Print help menu
-o DIR Save all images in the directory DIR
-f "ext1 ext2 ext3 .." Download specified formats/extensions only
-x "ext1 ext2 ext3 .." Exclude specified formats/extensions and download the rest
-l NUM Print last NUM entries of log file
-L Print full log history
## EXAMPLES:
Download all the images and save them in the user input directory
imgrab -o ~/my/input/dir [url]
Download only png images and save them in the user input directory
imgrab -o ~/my/input/dir -f "png" [url]
Download all images except png and jpg
imgrab -x "png jpg" [url]
(This will save the images in a sub-dir [url-images] in the current directory)