bin is no more
- Id
- 1ec09d6c124f2e7d43fad45f2e0057c8379948ed
- Author
- Caio
- Commit time
- 2023-07-27T08:56:18+02:00
Modified .gitignore
*.pyc
-bin/idea
-bin/rust-analyzer
+bin/*
config/fish/fish_variables
config/ncmpcpp/error.log
custom.d/*
Deleted bin/t
-#!/bin/sh
-
-SESSION=${1-scratch}
-
-if tmux has-session -t $SESSION; then
- exec tmux attach -t $SESSION
-else
- exec tmux new-session -s $SESSION
-fi
Deleted bin/telnets
-#!/bin/bash
-
-HOST=$1
-PORT=${2-443}
-
-openssl s_client -quiet -connect $HOST:$PORT