2021-12-06 15:01:12 +01:00
|
|
|
# c.sh
|
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
|
|
|
```
|
2021-12-07 22:25:33 +01:00
|
|
|
mkdir -p /opt/tools/c/
|
2021-12-06 15:01:12 +01:00
|
|
|
cd /opt/tools/c/
|
2021-12-07 22:25:33 +01:00
|
|
|
git clone https://git.okoyono.de/f/c.sh.git src
|
|
|
|
cd src
|
2021-12-06 15:01:12 +01:00
|
|
|
ln -s motd.sh /etc/profile.d/
|
|
|
|
cp gitignore /.gitignore
|
2021-12-07 22:25:33 +01:00
|
|
|
echo "source /opt/tools/c/src/zsh.config" >> /root/.zshrc
|
2021-12-06 15:01:12 +01:00
|
|
|
|
|
|
|
git init repo
|
|
|
|
cd repo
|
|
|
|
git config pager.diff false
|
|
|
|
git config advice.addIgnoredFile false
|
|
|
|
git config core.worktree /
|
2021-12-07 22:33:52 +01:00
|
|
|
git config user.email "c@c.sh"
|
|
|
|
git config user.name "C C"
|
2021-12-06 15:01:12 +01:00
|
|
|
```
|
|
|
|
|
2021-12-12 00:35:55 +01:00
|
|
|
## Usage and Help
|
2021-12-06 15:01:12 +01:00
|
|
|
|
|
|
|
```
|
|
|
|
c help
|
|
|
|
```
|
|
|
|
|