Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
bruneo32 committed May 21, 2022
1 parent e6a27fd commit f74f35c
Showing 1 changed file with 26 additions and 23 deletions.
49 changes: 26 additions & 23 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,36 @@
# fcow - command
Version 1.0
`Version 1.0`

A full colored cow will advice your future

## Install
Download debian package from the latest Github Actions workflow run artifact, unzip it, and install with:
Download debian package from the latest [Release](https://github.com/informaticapau/fcow/releases), and install with:
```sh
sudo apt install ./fcow_1.0-1.deb
```

## Build
Two ways:

1. Making copies:
```sh
mkdir /usr/local/share/fcow
cp src/fcow /usr/local/bin/fcow
cp share/HELP /usr/local/share/fcow/HELP
mkdir /usr/local/man/man6/
cp man/fcow.6 /usr/local/man/man6/fcow.6
```

2. Making symlinks:
```sh
ln -srf src/fcow /usr/local/bin/fcow
mkdir /usr/local/share/fcow
ln -srf share /usr/local/share/fcow
mkdir /usr/local/man/man6/
ln -srf man/fcow.6 /usr/local/man/man6/fcow.6
```


## HELP
```
Usage: fcow [options]
Expand All @@ -29,24 +53,3 @@ You may like execute:
You can edit permanent aliases in "~/.bash_aliases"
```

## Build
Two ways:

1. Making copies:
```sh
mkdir /usr/local/share/fcow
cp src/fcow /usr/local/bin/fcow
cp share/HELP /usr/local/share/fcow/HELP
mkdir /usr/local/man/man6/
cp man/fcow.6 /usr/local/man/man6/fcow.6
```

2. Making symlinks:
```sh
ln -srf src/fcow /usr/local/bin/fcow
mkdir /usr/local/share/fcow
ln -srf share /usr/local/share/fcow
mkdir /usr/local/man/man6/
ln -srf man/fcow.6 /usr/local/man/man6/fcow.6
```

0 comments on commit f74f35c

Please sign in to comment.