I have been in DevOps related jobs for past 6 years dealing mainly with Kubernetes in AWS and on-premise as well. I spent quite a lot …
:date_long | 1 min Read
Remove tiddlywiki backup files from websupport
sftp linuxinuse.com@linuxinuse.com << EOF
rm web/tw/index.20200430.153755.html
exit
EOF
Take an advantage of ‘‘regular expressions’’
sftp linuxinuse.com@linuxinuse.com << EOF
rm web/tw/index.[0-9\.]*.html
exit
EOF