Skip to content

Instantly share code, notes, and snippets.

View aidenlx's full-sized avatar
💭
I may be slow to respond.

Aiden Liu aidenlx

💭
I may be slow to respond.
  • China
View GitHub Profile
@aidenlx
aidenlx / fish_shell_local_install.sh
Last active September 20, 2022 13:08 — forked from masih/fish_shell_local_install.sh
Installs Fish Shell without root access (work with fish v3.5.1)
#!/bin/bash
# Script for installing Fish Shell on systems without root access.
# Fish Shell will be installed in $HOME/.local
# It's assumed that wget and following packages is installed (https://github.com/fish-shell/fish-shell#dependencies-1)
# 1. a C++11 compiler (g++ 4.8 or later, or clang 3.3 or later)
# 2. CMake (version 3.5 or later)
# exit on error
set -e