#command list
[name of this entry]
[the extensions which you want to apply this entry]
[program]
In tag, $(filename) is replaced to the filename (not fullpath) of the
item and $(dir) is replaced to the store directory. Additionally, $(url) is
the url of the item, and $(filepath) is the full path to the downloaded file
(includes the filename)
Note:
Before executing programs you specify, Aria changes the working directory to
the store directory of the item. Then programs executed. So you don't have to
explicitly write something like "cd $(dir); ....."
*****************************************************************************
PLEASE NOTE THAT I AM NOT RESPONSIBLE TO THE RESULTS OF THE INVOKED PROGRAMS.
*****************************************************************************
EXAMPLES:
1.automatically unpack .tar.bz2 archive when its download completes,
untar(bzip2)
.tar.bz2
bzip2 -cd $(filepath) | tar xf -
2.view image files when downloaded
view-images
.jpg .jpeg
xv $(filepath)&