From a2632b4dea43cf6f9a4195f4263de820e43e5ac0 Mon Sep 17 00:00:00 2001 From: ItsDrike Date: Wed, 19 Jun 2024 23:03:40 +0200 Subject: [PATCH] Use hardfiles instead of sprunge --- home/programs/terminal/shell/zsh/rc/aliases.zsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/home/programs/terminal/shell/zsh/rc/aliases.zsh b/home/programs/terminal/shell/zsh/rc/aliases.zsh index cba64fc..dcdf069 100644 --- a/home/programs/terminal/shell/zsh/rc/aliases.zsh +++ b/home/programs/terminal/shell/zsh/rc/aliases.zsh @@ -122,8 +122,8 @@ alias sv='systemctl' alias pacnew="find / -name '*.pacnew' 2>/dev/null" # Search for all new configurations after pacman update alias backup="rsync -avHAXS --delete --filter='dir-merge /.rsync-filter'" # Make full rsync backup, respecting .rsync-filter files for exclusions #alias upload='curl -F "f:1=<-" ix.io' # ix.io was offline for about 10 months now... -#alias upload='curl -F "file=@-" https://hardfiles.org' # hardfiles.org works, but has 24-hour expiry -alias upload='curl -F "sprunge=<-" http://sprunge.us' +#alias upload='curl -F "sprunge=<-" http://sprunge.us' # sprunge.us was offline for a few weeks now, not sure why +alias upload='curl -F "file=@-" https://hardfiles.org' # hardfiles.org works, but has 24-hour expiry alias upload-journal='sudo journalctl -b -1 | upload' # Upload journalctl from last boot to ix.io alias auth-log='journalctl SYSLOG_FACILITY=10 -r' alias cpu-stress='for i in $(seq $(getconf _NPROCESSORS_ONLN)); do yes > /dev/null & done' # Run `yes > /dev/null` on all cores as stress test