blob: 51a33e1b8ffac1ac2ce8e3a0dc66ad393d56facd (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
 | #! /usr/bin/env bash
set -e
p="$HOME/codes/crupest/tools/Crupest.SecretTool/publish/proxy.txt"
if [[ ! -f "$p" ]]; then
    echo "File $p does not exist!" >&2
    exit 1
fi
exec vim "$p"
 |