Go to file
Oliver Schmidhauser 06d4a0bf2f Disable globbing in termux-notification.
Fixes https://github.com/termux/termux-api/issues/120

`termux-notification --content '*'` should mean the content of the
notifiation is `*` and not a list of files. The globbing, if desired,
should be done by the shell starting the process

```
echo * # does globbing
echo '*' does not do globbing

termux-notification --content * # Does globbing (but errors, since this
won't be valid syntax).
termux-notification --content '*' # Does globbing without this patch but
shouldn't

```
2018-02-12 11:30:40 +01:00
scripts Disable globbing in termux-notification. 2018-02-12 11:30:40 +01:00
.gitignore Initial push 2017-04-09 18:19:29 +02:00
LICENSE Initial commit 2017-04-09 18:01:38 +02:00
Makefile Initial push 2017-04-09 18:19:29 +02:00
README.md Update README.md 2017-04-09 18:38:20 +02:00
termux-api.c Initial push 2017-04-09 18:19:29 +02:00

termux-api-package

Termux package containing scripts to call exposed API methods in the Termux:API app.