mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-25 20:37:53 +08:00
11 lines
155 B
Bash
Executable File
11 lines
155 B
Bash
Executable File
#!/bin/sh
|
|
# Author: Juan Batiz-Benet <juan@benet.ai>
|
|
# MIT LICENSED
|
|
|
|
read -p "continue? [y/N] "
|
|
echo
|
|
if [[ $REPLY =~ ^[Yy]$ ]]; then
|
|
exit 0
|
|
fi
|
|
exit -1
|