1
Fork 0
mirror of https://github.com/Steffo99/config-fish.git synced 2024-12-22 23:04:22 +00:00
config-fish/functions/discord_export.fish

11 lines
280 B
Fish
Raw Normal View History

2021-10-03 15:58:19 +00:00
function discord_export
if test -z "$DISCORD_TOKEN_BOT"
echo_error "\$DISCORD_TOKEN_BOT is not set."
exit 1
end
2021-10-03 22:13:24 +00:00
set channels "--channel "$argv
set channels (string split -- " " "$channels")
discord-chat-exporter-cli export --bot $channels
2021-10-03 15:58:19 +00:00
end