aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md14
-rw-r--r--src/bashly.yml7
-rwxr-xr-xtama10
3 files changed, 18 insertions, 13 deletions
diff --git a/README.md b/README.md
index 389b974..87de52f 100644
--- a/README.md
+++ b/README.md
@@ -43,12 +43,14 @@ Usage:
tama --version | -v
Commands:
- trending Trending anime
- popular Popular anime
- upcoming Upcoming anime
- search Search for a number of anime
- watch Watch an anime by episode
- episodes An anime's episodes
+ trending Trending anime
+ popular Popular anime
+ upcoming Upcoming anime
+ current Currently airing anime
+ search Search for a number of anime
+ watch Watch an anime by episode
+ episodes An anime's episodes
+ recommend View recommended and similar anime
```
### Dependencies
diff --git a/src/bashly.yml b/src/bashly.yml
index 9685972..9234aed 100644
--- a/src/bashly.yml
+++ b/src/bashly.yml
@@ -28,7 +28,8 @@ commands:
- name: id
required: true
help: |
- Found by either the trending, popular, upcoming, or search subcommand
+ Found by either the trending, popular, upcoming, current, or search
+ subcommand
- name: episode
required: true
help: Episode to watch
@@ -52,8 +53,10 @@ commands:
dependencies: [head]
- name: recommend
alias: r
+ help: View recommended and similar anime
args:
- name: id
required: true
help: |
- View recommended and similar anime to an anime
+ Found by either the trending, popular, upcoming, current, or search
+ subcommand
diff --git a/tama b/tama
index a7f9c3b..0169d22 100755
--- a/tama
+++ b/tama
@@ -41,7 +41,7 @@ tama_usage() {
printf " %s Search for a number of anime\n" "search "
printf " %s Watch an anime by episode\n" "watch "
printf " %s An anime's episodes\n" "episodes "
- printf " %s \n" "recommend"
+ printf " %s View recommended and similar anime\n" "recommend"
echo
# :command.long_usage
@@ -273,7 +273,7 @@ tama_watch_usage() {
# :argument.usage
printf " %s\n" "ID"
- printf " Found by either the trending, popular, upcoming, or search subcommand\n"
+ printf " Found by either the trending, popular, upcoming, current, or search\n subcommand\n"
echo
# :argument.usage
@@ -327,11 +327,11 @@ tama_episodes_usage() {
# :command.usage
tama_recommend_usage() {
if [[ -n $long_usage ]]; then
- printf "tama recommend\n"
+ printf "tama recommend - View recommended and similar anime\n"
echo
else
- printf "tama recommend\n"
+ printf "tama recommend - View recommended and similar anime\n"
echo
fi
@@ -358,7 +358,7 @@ tama_recommend_usage() {
# :argument.usage
printf " %s\n" "ID"
- printf " View recommended and similar anime to an anime\n"
+ printf " Found by either the trending, popular, upcoming, current, or search\n subcommand\n"
echo
fi