forked from zsh-users/fizsh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
42 lines (25 loc) · 1.54 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
*** For those using a Debian-based distribution, such as Ubuntu, there is a ".deb" archive file available:
user@localmachine$ wget --no-check-certificate --output-document=fizsh_1.0.9-1_all.deb "https://downloads.sourceforge.net/project/fizsh/fizsh_1.0.8-1_all.deb"
The ".deb" archive can be installed by dpkg:
user@localmachine$ sudo dpkg -i fizsh_1.0.9-1_all.deb
user@localmachine$ fizsh
Welcome to fizsh, the friendly interactive zshell
Type man fizsh for instructions on how to use fizsh
user@localmachine current-directory>
*** People on RPM-based systems may try:
user@localmachine$ wget --no-check-certificate --output-document=fizsh-1.0.9-1.noarch.rpm "https://downloads.sourceforge.net/project/fizsh/fizsh-1.0.8-1.noarch.rpm"
user@localmachine$ sudo rpm -Uhv fizsh-1.0.9-1.noarch.rpm
user@localmachine$ fizsh
Welcome to fizsh, the friendly interactive zshell
Type man fizsh for instructions on how to use fizsh
user@localmachine current-directory>
*** Those on other systems have to use the tarball:
user@localmachine$ wget --no-check-certificate --output-document=fizsh-1.0.9.tar.gz "https://downloads.sourceforge.net/project/fizsh/fizsh-1.0.8.tar.gz"
Extract it:
user@localmachine$ tar -xvzf fizsh-1.0.9.tar.gz
Change directory:
user@localmachine$ cd fizsh-1.0.9
Configure and install:
user@localmachine$ ./configure && make && sudo make install
Or if you do not have access to a privileged account you may install fizsh in your home directory:
user@localmachine$ export PATH=$PATH:$HOME/bin && ./configure --prefix=$HOME && make && make install