1
0
Fork 0

scripts: cleanup

This commit is contained in:
Daniel Kempkens 2023-12-12 00:31:51 +01:00
parent 474b97e27a
commit 6a7a5ce04e
Signed by: daniel
SSH key fingerprint: SHA256:Ks/MyhQYcPRQiwMKLAKquWCdCPe3JXlb1WttgnAoSeM
2 changed files with 10 additions and 20 deletions

10
home/programs/scripts/bdfr Executable file
View file

@ -0,0 +1,10 @@
#!/usr/bin/env nu
def main [
--subreddit: string
--sort: string = "hot"
] {
let url = $"https://media-browser.internal.kempkens.network/management/jobs/BdfrDownload/run?args[subreddit]=($subreddit)&args[sort]=($sort)"
http get $url | ignore
}

View file

@ -1,20 +0,0 @@
#!/usr/bin/env nix-shell
#!nix-shell -i bash -p git fd ripgrep
# shellcheck disable=SC1008
if git remote -v | rg -q nedeco; then
nix path-info -r "$(fd '^flake-profile-[a-z0-9]+$' ./.direnv/)" | while read -r dir; do
echo "Uploading $dir ..."
if attic push nedeco:devshells "$dir"; then
continue
else
echo "Ignoring error ..."
fi
done
else
echo "Doesn't look like a work repository"
exit 1
fi
# vim: set ft=sh: