- #!/bin/bash
- # @Contact : liuyuqi.gov@msn.cn
- # @Time : 2024/04/09 13:38:51
- # @License : (C)Copyright 2022 liuyuqi.
- # @Desc : install fgh to os system
- ###############################################################################
- mkdir -p /opt/fgh
- wget https://fileshare.yoqi.me/fgh/fgh -O /opt/fgh/fgh
- chmod +x /opt/fgh/fgh
- ln -s /opt/fgh/fgh /usr/local/bin/fgh
- echo "export PATH=$PATH:/opt/fgh" >> /etc/profile
- source /etc/profile
- echo "fgh installed successfully"
|