# I am the Watcher. I am your guide through this vast new twtiverse.
#
# Usage:
# https://watcher.sour.is/api/plain/users View list of users and latest twt date.
# https://watcher.sour.is/api/plain/twt View all twts.
# https://watcher.sour.is/api/plain/mentions?uri=:uri View all mentions for uri.
# https://watcher.sour.is/api/plain/conv/:hash View all twts for a conversation subject.
#
# Options:
# uri Filter to show a specific users twts.
# offset Start index for quey.
# limit Count of items to return (going back in time).
#
# twt range = 1 9
# self = https://watcher.sour.is/conv/bsl6gma
@lyse Oops, I must confess that I didn’t check whether that’s POSIX or not. 😬 So, thanks for the link. 👍
It really is a shame that there’s no guarantee that a shebang of #!/bin/sh
enforces true and strict POSIX-conformity. This is all so fragile. 😞
@lyse Oops, I must confess that I didn’t check whether that’s POSIX or not. 😬 So, thanks for the link. 👍
It really is a shame that there’s no guarantee that a shebang of #!/bin/sh
enforces true and strict POSIX-conformity. This is all so fragile. 😞
@lyse Oops, I must confess that I didn’t check whether that’s POSIX or not. 😬 So, thanks for the link. 👍
It really is a shame that there’s no guarantee that a shebang of #!/bin/sh
enforces true and strict POSIX-conformity. This is all so fragile. 😞
(I think I first saw for i; do
in Shell-Skript Programmierung by Patrick Ditchen from 2008: German excerpt. They didn’t mention any restrictions on shell versions and I’ve been using it for ages. 😅 (I’m not too happy that the book uses for i in $*
as the default template instead of for i in "$@"
. The book doesn’t care too much about file names with spaces in them.))
(I think I first saw for i; do
in Shell-Skript Programmierung by Patrick Ditchen from 2008: German excerpt. They didn’t mention any restrictions on shell versions and I’ve been using it for ages. 😅 (I’m not too happy that the book uses for i in $*
as the default template instead of for i in "$@"
. The book doesn’t care too much about file names with spaces in them.))
(I think I first saw for i; do
in Shell-Skript Programmierung by Patrick Ditchen from 2008: German excerpt. They didn’t mention any restrictions on shell versions and I’ve been using it for ages. 😅 (I’m not too happy that the book uses for i in $*
as the default template instead of for i in "$@"
. The book doesn’t care too much about file names with spaces in them.))
@movq You're good, it's POSIX-compliant. ;-) I also was taught $*
first instead of "$@"
. Looks like a common thing. :-) Shell has just soooooo many quirks and inconsistencies, it is quite hard to master it. But we'll never get rid of it.