mirror of
https://github.com/bettercap/bettercap
synced 2025-08-19 13:09:49 -07:00
misc: small fix or general refactoring i did not bother commenting
This commit is contained in:
parent
c833f91f43
commit
5364a75b26
2 changed files with 4 additions and 2 deletions
|
@ -23,6 +23,8 @@ This command will download bettercap, install its dependencies, compile it and m
|
|||
Now you can use `sudo bettercap -h` to show the basic command line options and just `sudo bettercap` to start an
|
||||
[interactive session](https://github.com/bettercap/bettercap/wiki/Interactive-Mode) on your default network interface, otherwise you can [load a caplet](https://github.com/bettercap/bettercap/wiki/Caplets) from [the dedicated repository](https://github.com/bettercap/caplets).
|
||||
|
||||
## Documentation and Examples
|
||||
|
||||
The project is documented [in this wiki](https://github.com/bettercap/bettercap/wiki).
|
||||
|
||||
## Update
|
||||
|
|
|
@ -6,10 +6,10 @@ MISC=()
|
|||
|
||||
echo "@ Fetching remote tags ..."
|
||||
|
||||
git fetch --tags > /dev/null
|
||||
# git fetch --tags > /dev/null
|
||||
|
||||
CURTAG=$(git describe --tags --abbrev=0)
|
||||
OUTPUT=$(git log $CURTAG..HEAD --oneline)
|
||||
OUTPUT=$(git log v2.0.0RC1..HEAD --oneline)
|
||||
IFS=$'\n' LINES=($OUTPUT)
|
||||
|
||||
for LINE in "${LINES[@]}"; do
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue