Move Tv Shows in SickRage from one directory / folder to another
Example: you have 2 tv show folders and you want to merge them. Ex: you have 10 tv shows here /VD/TvShows and 3 tv shows here /VD/TvShows1. you would like to moveRead More…
Example: you have 2 tv show folders and you want to merge them. Ex: you have 10 tv shows here /VD/TvShows and 3 tv shows here /VD/TvShows1. you would like to moveRead More…
Recommend to read this first: http://wiki.bash-hackers.org/syntax/quoting With bash you will see 3 types of quoting & in general typing anything in bash you will be in one of these scenarios (your eitherRead More…
schedule is created to mimic linux’s “at” function which allows you to schedule a command/script/set of commands to run later. schedule is a bash function (that you need to copy paste intoRead More…
I find nl very useful tool when working on *nix systems or just any systems. Throwing in number lines on output gives you an idea of where lines start and end. LinesRead More…
Thanks to dteske for the idea df -h | while read line; do [ -n “$var” ] || echo $line; var=1; echo $line | grep p8; done NOTE: how you can doRead More…