Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zsh-users/fizsh
Friendly Interactive ZSHell.
https://github.com/zsh-users/fizsh
Last synced: about 1 month ago
JSON representation
Friendly Interactive ZSHell.
- Host: GitHub
- URL: https://github.com/zsh-users/fizsh
- Owner: zsh-users
- License: other
- Created: 2011-08-12T08:04:08.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2022-08-31T23:38:02.000Z (about 2 years ago)
- Last Synced: 2024-09-29T08:03:36.400Z (about 2 months ago)
- Language: Shell
- Homepage:
- Size: 380 KB
- Stars: 299
- Watchers: 21
- Forks: 18
- Open Issues: 3
-
Metadata Files:
- Readme: README
- Changelog: ChangeLog
- License: COPYING
Awesome Lists containing this project
README
*** 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