28 lines
452 B
Markdown
28 lines
452 B
Markdown
# c.sh
|
|
|
|
## Installation
|
|
|
|
```
|
|
mkdir -p /opt/tools/c/
|
|
cd /opt/tools/c/
|
|
git clone https://git.okoyono.de/f/c.sh.git src
|
|
cd src
|
|
ln -s motd.sh /etc/profile.d/
|
|
cp gitignore /.gitignore
|
|
echo "source /opt/tools/c/src/zsh.config" >> /root/.zshrc
|
|
|
|
git init repo
|
|
cd repo
|
|
git config pager.diff false
|
|
git config advice.addIgnoredFile false
|
|
git config core.worktree /
|
|
git config user.email "c@c.sh"
|
|
git config user.name "C C"
|
|
```
|
|
|
|
## Usage and Help
|
|
|
|
```
|
|
c help
|
|
```
|
|
|