blob: 68aac60aa4f23afd65b635be5aadee8d5db96fca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/bin/sh
list_categories()
{
cat <<EOF
music
anime
movies
shows
other
software
games
isos
books
EOF
}
category="$(list_categories | commander -cl)"
[ "$category" ] || exit 1
transmission-remote debuc.com -a "$(clipo)" -w "/downloads/$category"
herbe "_mtr" "*added to $category"
|