# 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 13
# self = https://watcher.sour.is/conv/5jys7ia
Been trying to get acquainted with rsync(1)
but, whenever I Tab
for completion and get this:
> Ξ» ~/ rsync --
> zsh: do you wish to see all 484 possibilities (162 lines)?
I'm like: Nope! a scp -rpCq ...
or whatever option salad will do just fine. π
[Insert: "Ain't nobody got time fo'that!" Meme.]
@aelaraji Rsync has a ton of options and I probably still haven't scratched the surface, but I was able to memorize the options I actually need for day-to-day work in a relatively short time. I guess I'm the opposite of you, because I don't know any scp(1)
options.
@aelaraji rsync -zaXAP
is what I use all the time. But thatβs all β for the rest, I have to consult the manual. π
@aelaraji rsync -zaXAP
is what I use all the time. But thatβs all β for the rest, I have to consult the manual. π
@aelaraji rsync -zaXAP
is what I use all the time. But thatβs all β for the rest, I have to consult the manual. π
@aelaraji rsync -zaXAP
is what I use all the time. But thatβs all β for the rest, I have to consult the manual. π
@aelaraji @mckinley rsync -avzr
with an optional --progress
is what I always use. Ah, I could use the shorter -P
, thanks @movq.
@aelaraji I think all replies are missing the fact that your auto-completion isn't working. LOL. Or did I misunderstood?
@aelaraji I think all replies are missing the fact that your auto-completion isn't working. LOL. Or did I misunderstood?
@lyse and @movq thanks for sharing those options, they're a good point to start from. Much appreciated! π
@lyse and @movq thanks for sharing those options, they're a good point to start from. Much appreciated! π
I usually end up using -rtz
because I'm usually not 100% sure all the permissions and ownership information are right and I hate littering directories with inconsistent permissions. For a big transfer, I'll start with -rtvz --stats --dry-run
and make sure it's only transferring the files it should, then I'll do -rtz --stats --info=progress2 --no-i-r
to get one progress bar to watch for the whole transfer.
I usually end up using -rtz
because I'm usually not 100% sure all the permissions and ownership information is right and I hate littering directories with inconsistent permissions. For a big transfer, I'll start with -rtvz --stats --dry-run
and make sure it's only transferring the files it should, then I'll do -rtz --stats --info=progress2 --no-i-r
to get one progress bar to watch for the whole transfer.