I hereby claim:
- I am patdavid on github.
- I am patdavid (https://keybase.io/patdavid) on keybase.
- I have a public key whose fingerprint is 66D1 7CA6 8088 4874 946D 18BD 67C7 6219 89E9 57AC
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| # Get a list of all of the torrent files matching `grep`, and output to a (temp) text file: | |
| transmission-remote -l | grep "Good" > list.txt | |
| Loop through all lines in the text file, capture first column into $value1, move it! | |
| while IFS=" " read -r value1 remainder;do transmission-remote -t $value1 --move /home/pat/Downloads/seeding/;done < list.txt |
| avg_video : | |
| -e[] "" -v - n=0 go=1 | |
| -do | |
| -l[] -i "$1",$n,$n -if $! n+=1 -else go=0 -endif -onfail go=0 -endl | |
| -+ | |
| -v + -e[] "\r - Image "$n" " -v - | |
| -while $go -/ $n -v + | |
| avg_files : | |
| -e[] "" -v - files=${"-files \"$1\""} -arg2var _file,$files n=0 go=1 |
Picked these from here
| Command | Note |
|---|---|
| Ctrl + a | go to the start of the command line |
| Ctrl + e | go to the end of the command line |
| Ctrl + k | delete from cursor to the end of the command line |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> | |
| <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/> | |
| <xsl:template match="node()|@*"> | |
| <xsl:copy> | |
| <xsl:apply-templates select="node()|@*"/> | |
| </xsl:copy> | |
| </xsl:template> |