cron
in UNIX platform.$ cargo install kic
$PATH
.```bash $ curl -sSf https://static.rust-lang.org/rustup.sh | sh
$ cargo install kic
$ echo 'PATH=$PATH:$HOME/.cargo/bin' >> $HOME/.bashprofile && source $HOME/.bashprofile ```
tree
command for easily explanation.$ kic init
.kic
directory and essential files have been created in current directory.```bash $ pwd /Users/tokutake/tmp
$ tree -a . ├── dir1 │ └── file2 └── file1
1 directory, 2 files
$ kic init INFO: Create ".kic" directory INFO: Create "warehouse" directory INFO: Create "config.toml" file INFO: Create "ignore" file
$ tree -a . ├── .kic │ ├── config.toml │ ├── ignore │ └── warehouse ├── dir1 │ └── file2 └── file1
3 directories, 4 files
$ cat .kic/ignore ./dir1/file2 ./file1 ```
$ kic sweep all
(dry-run)$ kic sweep all indeed
```bash $ touch file3 dir1/file4 . ├── .kic │ ├── config.toml │ ├── ignore │ └── warehouse ├── dir1 │ ├── file2 │ └── file4 ├── file1 └── file3
3 directories, 6 files
$ kic sweep all INFO: Create "2016-05-16" directory in ".kic/warehouse" INFO: Create "sweep.log" file in ".kic/warehouse/2016-05-16" INFO: Read "config.toml" file INFO: Get the parameter for "sweep.moratorium" INFO: Read "ignore" file INFO: Move dusts to ".kic/warehouse/2016-05-16/dusts" (dry-run mode) INFO: => "./dir1/file4" INFO: => "./file3" INFO: Move empty dirs to ".kic/warehouse/2016-05-16/dusts" (dry-run mode)
$ tree -a . ├── .kic │ ├── config.toml │ ├── ignore │ └── warehouse │ └── 2016-05-16 │ ├── dusts │ └── sweep.log ├── dir1 │ ├── file2 │ └── file4 ├── file1 └── file3
5 directories, 7 files
$ kic sweep all indeed INFO: Create "2016-05-16" directory in ".kic/warehouse" INFO: Create "sweep.log" file in ".kic/warehouse/2016-05-16" INFO: Read "config.toml" file INFO: Get the parameter for "sweep.moratorium" INFO: Read "ignore" file INFO: Move dusts to ".kic/warehouse/2016-05-16/dusts" INFO: => "./dir1/file4" INFO: => "./file3" INFO: Move empty dirs to ".kic/warehouse/2016-05-16/dusts"
$ tree -a . ├── .kic │ ├── config.toml │ ├── ignore │ └── warehouse │ └── 2016-05-16 │ ├── dusts │ │ ├── dir1 │ │ │ └── file4 │ │ └── file3 │ └── sweep.log ├── dir1 │ └── file2 └── file1
6 directories, 7 files ```
all
option above example?$ kic sweep
(dry-run)```bash $ touch file3 dir1/file4
$ kic sweep INFO: Create "2016-05-16" directory in ".kic/warehouse" INFO: Create "sweep.log" file in ".kic/warehouse/2016-05-16" INFO: Read "config.toml" file INFO: Get the parameter for "sweep.moratorium" INFO: Read "ignore" file INFO: Move dusts to ".kic/warehouse/2016-05-16/dusts" (dry-run mode) INFO: Move empty dirs to ".kic/warehouse/2016-05-16/dusts" (dry-run mode)
$ cat .kic/config.toml
[burn] moratorium = "2 weeks"
[sweep] moratorium = "10 minutes" period = "daily" time = "00:00"
$ kic sweep INFO: Create "2016-05-16" directory in ".kic/warehouse" INFO: Create "sweep.log" file in ".kic/warehouse/2016-05-16" INFO: Read "config.toml" file INFO: Get the parameter for "sweep.moratorium" INFO: Read "ignore" file INFO: Move dusts to ".kic/warehouse/2016-05-16/dusts" (dry-run mode) INFO: => "./dir1/file4" INFO: => "./file3" INFO: Move empty dirs to ".kic/warehouse/2016-05-16/dusts" (dry-run mode)
$ kic sweep indeed INFO: Create "2016-05-16" directory in ".kic/warehouse" INFO: Create "sweep.log" file in ".kic/warehouse/2016-05-16" INFO: Read "config.toml" file INFO: Get the parameter for "sweep.moratorium" INFO: Read "ignore" file INFO: Move dusts to ".kic/warehouse/2016-05-16/dusts" INFO: => "./dir1/file4" INFO: => "./file3" INFO: Move empty dirs to ".kic/warehouse/2016-05-16/dusts"
$ kic config set sweep.moratorium 0minute INFO: Read "config.toml" file INFO: Set the parameter for "sweep.moratorium" INFO: Create "config.toml" file
$ touch file3 dir1/file4
$ kic sweep INFO: Create "2016-05-16" directory in ".kic/warehouse" INFO: Create "sweep.log" file in ".kic/warehouse/2016-05-16" INFO: Read "config.toml" file INFO: Get the parameter for "sweep.moratorium" INFO: Read "ignore" file INFO: Move dusts to ".kic/warehouse/2016-05-16/dusts" (dry-run mode) INFO: => "./dir1/file4" INFO: => "./file3" INFO: Move empty dirs to ".kic/warehouse/2016-05-16/dusts" (dry-run mode) ```
$ kic burn
(dry-run)$ kic burn indeed
```bash $ cat .kic/config.toml
[burn] moratorium = "2 weeks"
[sweep] moratorium = "0 minute" period = "daily" time = "00:00"
$ kic config set burn.moratorium 1day INFO: Read "config.toml" file INFO: Set the parameter for "burn.moratorium" INFO: Create "config.toml" file
$ mv .kic/warehouse/2016-05-16/ .kic/warehouse/2016-05-15/
$ kic burn INFO: Read "config.toml" file INFO: Get the parameter for "burn.moratorium" INFO: Create "2016-05-16" directory in ".kic/warehouse" INFO: Create "burn.log" file in ".kic/warehouse/2016-05-16" INFO: Delete expired dusts (dry-run mode) INFO: => ".kic/warehouse/2016-05-15"
$ tree -a . ├── .kic │ ├── config.toml │ ├── ignore │ └── warehouse │ ├── 2016-05-15 │ │ ├── dusts │ │ │ ├── dir1 │ │ │ │ └── file4 │ │ │ └── file3 │ │ └── sweep.log │ └── 2016-05-16 │ ├── burn.log │ └── dusts ├── dir1 │ └── file2 └── file1
8 directories, 8 files
$ kic burn indeed INFO: Read "config.toml" file INFO: Get the parameter for "burn.moratorium" INFO: Create "2016-05-16" directory in ".kic/warehouse" INFO: Create "burn.log" file in ".kic/warehouse/2016-05-16" INFO: Delete expired dusts INFO: => ".kic/warehouse/2016-05-15"
$ tree -a . ├── .kic │ ├── config.toml │ ├── ignore │ └── warehouse │ └── 2016-05-16 │ ├── burn.log │ └── dusts ├── dir1 │ └── file2 └── file1
5 directories, 5 files
$ rm -rf .kic/warehouse/2016-05-16/ ```
cron
$ kic start
$ kic end
```bash $ kic start INFO: Read cron INFO: Read "config.toml" file INFO: Get the parameter for "sweep.period" INFO: Get the parameter for "sweep.time" INFO: Set new cron
$ crontab -l
0 12 * * * /Users/tokutake/codes/kic/target/debug/kic patrol 0 0 * * * cd /Users/tokutake/tmp && /Users/tokutake/codes/kic/target/debug/kic burn indeed 0 0 * * * cd /Users/tokutake/tmp && /Users/tokutake/codes/kic/target/debug/kic sweep indeed
$ kic config set sweep.period weekly INFO: Read "config.toml" file INFO: Set the parameter for "sweep.period" INFO: Create "config.toml" file
$ kic config set sweep.time 14:00 INFO: Read "config.toml" file INFO: Set the parameter for "sweep.time" INFO: Create "config.toml" file
$ kic start INFO: Read cron INFO: Read "config.toml" file INFO: Get the parameter for "sweep.period" INFO: Get the parameter for "sweep.time" INFO: Set new cron
$ crontab -l
0 12 * * * /Users/tokutake/codes/kic/target/debug/kic patrol 0 0 * * * cd /Users/tokutake/tmp && /Users/tokutake/codes/kic/target/debug/kic burn indeed 0 14 * * 0 cd /Users/tokutake/tmp && /Users/tokutake/codes/kic/target/debug/kic sweep indeed
$ kic end INFO: Read cron INFO: Set new cron
$ crontab -l
```
```bash $ touch file3 file4
$ kic ignore add file3 file4 INFO: Read "ignore" file INFO: Create "ignore" file
$ kic sweep all INFO: Create "2016-05-17" directory in ".kic/warehouse" INFO: Create "sweep.log" file in ".kic/warehouse/2016-05-17" INFO: Read "config.toml" file INFO: Get the parameter for "sweep.moratorium" INFO: Read "ignore" file INFO: Move dusts to ".kic/warehouse/2016-05-17/dusts" (dry-run mode) INFO: Move empty dirs to ".kic/warehouse/2016-05-17/dusts" (dry-run mode)
$ mkdir dir2 && touch dir2/file{5,6}
$ kic ignore add dir2 INFO: Read "ignore" file INFO: Create "ignore" file
$ kic sweep all INFO: Create "2016-05-17" directory in ".kic/warehouse" INFO: Create "sweep.log" file in ".kic/warehouse/2016-05-17" INFO: Read "config.toml" file INFO: Get the parameter for "sweep.moratorium" INFO: Read "ignore" file INFO: Move dusts to ".kic/warehouse/2016-05-17/dusts" (dry-run mode) INFO: Move empty dirs to ".kic/warehouse/2016-05-17/dusts" (dry-run mode)
$ rm dir2/*
$ kic sweep all INFO: Create "2016-05-17" directory in ".kic/warehouse" INFO: Create "sweep.log" file in ".kic/warehouse/2016-05-17" INFO: Read "config.toml" file INFO: Get the parameter for "sweep.moratorium" INFO: Read "ignore" file INFO: Move dusts to ".kic/warehouse/2016-05-17/dusts" (dry-run mode) INFO: Move empty dirs to ".kic/warehouse/2016-05-17/dusts" (dry-run mode) INFO: => "./dir2"
$ touch dir2/.kickeep
$ kic sweep all INFO: Create "2016-05-17" directory in ".kic/warehouse" INFO: Create "sweep.log" file in ".kic/warehouse/2016-05-17" INFO: Read "config.toml" file INFO: Get the parameter for "sweep.moratorium" INFO: Read "ignore" file INFO: Move dusts to ".kic/warehouse/2016-05-17/dusts" (dry-run mode) INFO: Move empty dirs to ".kic/warehouse/2016-05-17/dusts" (dry-run mode) ```
$ kic ignore current
$ kic ignore refresh
```bash $ touch file{5,6,7}
$ mkdir dir3 && dir3/file{8,9,10}
$ kic ignore current CAUTION: Do you want to preserve current state? [yes/no]: y INFO: Create "ignore" file
$ kic sweep all INFO: Create "2016-05-18" directory in ".kic/warehouse" INFO: Create "sweep.log" file in ".kic/warehouse/2016-05-18" INFO: Read "config.toml" file INFO: Get the parameter for "sweep.moratorium" INFO: Read "ignore" file INFO: Move dusts to ".kic/warehouse/2016-05-18/dusts" (dry-run mode) INFO: Move empty dirs to ".kic/warehouse/2016-05-18/dusts" (dry-run mode)
$ cat .kic/ignore ./dir1/file2 ./dir3/file10 ./dir3/file8 ./dir3/file9 ./file1 ./file3 ./file4 ./file5 ./file6 ./file7
$ rm file{5,6,7}
$ kic ignore refresh
$ cat .kic/ignore ./dir1/file2 ./dir3/file10 ./dir3/file8 ./dir3/file9 ./file1 ./file3 ./file4 ```
```bash
$ kic
Usage:
kic
Description: Keep your directories clean
Command: help # Display usage for each command version # Display the version of this software init # Register current directory, i.e. create ".kic" directory config # Change "config.toml" file's contents ignore # Change "ignore" file's contents sweep # Move dust files and empty directories into "warehouse" directory burn # Delete expired directories in "warehouse" directory start # Start automatic "sweep" and "burn" (UNIX-like: cron, Windows: ?) end # End automatic "sweep" and "burn" (UNIX-like: cron, Windows: ?) destroy # Unregister current directory, i.e. delete ".kic" directory patrol # Keep your "cron" file clean (UNIX-like only)
$ kic help config
Usage:
kic config set
Description: Change "config.toml" file's contents
Command: set # Set parameters related to "sweep" and "burn" commands init # Initialize "config.toml" file
Keys: burn.moratorium # Moratorium to delete directories in "warehouse" sweep.moratorium # Moratorium to Move "dust"s into "warehouse" sweep.period # Period to Move "dust"s by automatic "sweep" sweep.time # Time to Move "dust"s by automatic "sweep" ```
$ kic destroy
```bash $ kic start INFO: Read cron INFO: Read "config.toml" file INFO: Get the parameter for "sweep.period" INFO: Get the parameter for "sweep.time" INFO: Set new cron
$ kic destroy CAUTION: Do you want to clear all files related to "kic"? [yes/no]: y INFO: Delete ".kic" directory INFO: Read cron INFO: Set new cron
$ crontab -l
```