Compare commits
11 commits
Author | SHA1 | Date | |
---|---|---|---|
0fb7c7fde8 | |||
246f25600e | |||
ad32f12055 | |||
5be6d0ec88 | |||
458345c79c | |||
|
80150201fe | ||
|
e68fef7879 | ||
|
07a7680df8 | ||
|
dd2cfa7999 | ||
|
f1ce8b6894 | ||
|
153cc41e02 |
5 changed files with 69 additions and 70 deletions
0
.gitignore
vendored
Normal file → Executable file
0
.gitignore
vendored
Normal file → Executable file
0
LICENSE
Normal file → Executable file
0
LICENSE
Normal file → Executable file
67
README.md
Normal file → Executable file
67
README.md
Normal file → Executable file
|
@ -1,41 +1,43 @@
|
|||

|
||||
# WPFind
|
||||
|
||||
WPFind
|
||||
======
|
||||

|
||||
|
||||
The purpose of this script is to find wallpapers among pictures files in directory and sub-directories and move/copy them to a separate directory.
|
||||
It can be useful when you are trying to clean your mess on your computer ;-)
|
||||
|
||||
Requirements
|
||||
------------
|
||||
## Requirements
|
||||
|
||||
* Ubuntu, Linux Mint (should work on other Ubuntu derivatives)
|
||||
* detox
|
||||
* imagemagick
|
||||
- Ubuntu, Linux Mint (should work on Ubuntu derivatives), Arch Linux (should work on Ubuntu derivatives) and probably any Linux distro
|
||||
- detox
|
||||
- imagemagick
|
||||
|
||||
Installation
|
||||
------------
|
||||
|
||||
For Ubuntu 16.04, Linux Mint 18.x, and other derivatives
|
||||
|
||||
```
|
||||
curl -L https://packagecloud.io/makoto/stable/gpgkey | sudo apt-key add -
|
||||
echo "deb https://packagecloud.io/makoto/stable/ubuntu/ xenial main" | sudo tee /etc/apt/sources.list.d/makoto.list
|
||||
sudo apt-get update
|
||||
sudo apt-get install wpfind
|
||||
```
|
||||
## Installation
|
||||
|
||||
For Ubuntu 18.04, Linux Mint 19.x, and other derivatives
|
||||
|
||||
```
|
||||
```shell
|
||||
curl -L https://packagecloud.io/makoto/stable/gpgkey | sudo apt-key add -
|
||||
echo "deb https://packagecloud.io/makoto/stable/ubuntu/ bionic main" | sudo tee /etc/apt/sources.list.d/makoto.list
|
||||
sudo apt-get update
|
||||
sudo apt-get install wpfind
|
||||
```
|
||||
|
||||
Usage options
|
||||
-------------
|
||||
For Ubuntu 20.04, Linux Mint 20.x, and other derivatives
|
||||
|
||||
```shell
|
||||
curl -L https://packagecloud.io/makoto/stable/gpgkey | sudo apt-key add -
|
||||
echo "deb https://packagecloud.io/makoto/stable/ubuntu/ focal main" | sudo tee /etc/apt/sources.list.d/makoto.list
|
||||
sudo apt-get update
|
||||
sudo apt-get install wpfind
|
||||
```
|
||||
|
||||
For Arch Linux and derivatives
|
||||
|
||||
```shell
|
||||
yay -S wpfind
|
||||
```
|
||||
|
||||
## Usage options
|
||||
|
||||
```
|
||||
██╗ ██╗██████╗ ███████╗██╗███╗ ██╗██████╗
|
||||
|
@ -47,7 +49,7 @@ Usage options
|
|||
|
||||
Find wallpapers recursively in a dir and sub-directories...
|
||||
|
||||
Version : 0.1.2
|
||||
Version : 0.1.3
|
||||
Author : Francois B (Makoto)
|
||||
Licence : GPLv3
|
||||
|
||||
|
@ -62,36 +64,33 @@ Usage : wpfind [options]
|
|||
-h : show help & informations
|
||||
```
|
||||
|
||||
Usage examples
|
||||
--------------
|
||||
## Usage examples
|
||||
|
||||
Copy wallpapers in the current directory and sub-directories with minimum width of 1920px to wpfiles
|
||||
|
||||
```
|
||||
```shell
|
||||
wpfind -c
|
||||
```
|
||||
|
||||
Move wallpapers in the current directory and sub-directories with minimum width of 1920px to wpfiles
|
||||
|
||||
```
|
||||
```shell
|
||||
wpfind -m
|
||||
```
|
||||
|
||||
Move wallpapers in the /home/user/MyPics directory and sub-directories with minimum width of 2560px to /home/user/MyWP directory
|
||||
|
||||
```
|
||||
```shell
|
||||
wpfind -m -w 2560 -i /home/user/MyPics -o /home/user/MyWP
|
||||
```
|
||||
|
||||
Credits
|
||||
-------
|
||||
## Credits
|
||||
|
||||
This script has been written by Francois B. (Makotosan/Shakasan)
|
||||
|
||||
* Email : francois@makotonoblog.be
|
||||
* Website : https://makotonoblog.be/wpfind/
|
||||
- Email : francois@exoseed.be
|
||||
- Website : https://makotonoblog.be/wpfind/
|
||||
|
||||
Licence
|
||||
-------
|
||||
## Licence
|
||||
|
||||
The script is licensed under the terms of the GPLv3
|
0
pics/logo.png
Normal file → Executable file
0
pics/logo.png
Normal file → Executable file
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
8
wpfind
8
wpfind
|
@ -7,7 +7,7 @@
|
|||
#------------------------------------------------------------------------------
|
||||
|
||||
# app version number
|
||||
version="0.1.3"
|
||||
version="0.1.3.2"
|
||||
# logfile
|
||||
logfile="wpfind.log"
|
||||
touch $logfile
|
||||
|
@ -151,7 +151,7 @@ function wpFind () {
|
|||
if [ "$verbosemode" = "yes" ]; then
|
||||
printf "cp $iMode $pic $outputDir\n"
|
||||
fi
|
||||
cp $iMode $pic $outputDir
|
||||
cp $iMode "$pic" "$outputDir"
|
||||
date2log=$($date +'%Y-%m-%d %H:%M:%S')
|
||||
printf "$date2log - cp $iMode $pic $outputDir\n" >> $logfile
|
||||
# if move mode
|
||||
|
@ -160,7 +160,7 @@ function wpFind () {
|
|||
if [ "$verbosemode" = "yes" ]; then
|
||||
printf "mv $iMode $pic $outputDir\n"
|
||||
fi
|
||||
mv $iMode $pic $outputDir
|
||||
mv $iMode "$pic" "$outputDir"
|
||||
date2log=$($date +'%Y-%m-%d %H:%M:%S')
|
||||
printf "$date2log - mv $iMode $pic $outputDir\n" >> $logfile
|
||||
fi
|
||||
|
@ -179,7 +179,7 @@ function main() {
|
|||
beginProcess=$($date +'%s')
|
||||
printf "$NORMAL""Analyzing...(this may take a (very)(long) while)\n""$NORMAL"
|
||||
|
||||
# check if detox is installed
|
||||
# check if dependencies are installed
|
||||
depInstalled
|
||||
|
||||
# create the outputDir if doesn't exist
|
||||
|
|
Loading…
Add table
Reference in a new issue