GitHub
github.com › rupa › z
GitHub - rupa/z: z - jump around · GitHub
Z(1) User Commands Z(1) NAME z - jump around SYNOPSIS z [-chlrtx] [regex1 regex2 ... regexn] AVAILABILITY bash, zsh DESCRIPTION Tracks your most used directories, based on 'frecency'.
Starred by 17K users
Forked by 1.2K users
Languages Shell 64.6% | Roff 35.0% | Makefile 0.4%
GitHub
github.com › rupa › z › blob › master › z.sh
z/z.sh at master · rupa/z
# Copyright (c) 2009 rupa deadwyler. Licensed under the WTFPL license, Version 2 ... cd="$( < <( _z_dirs ) \awk -v t="$(\date +%s)" -v list="$list" -v typ="$typ" -v q="$fnd" -F"|" ' ... PROMPT_COMMAND="$PROMPT_COMMAND"$'\n''(_z --add "$(command pwd '$_Z_RESOLVE_SYMLINKS' 2>/dev/null)" 2>/dev/null &);'
Author rupa
Videos
57:06
Take GitHub to the command line - GitHub CLI - YouTube
05:26
GitHub CLI - Manage Your GitHub Repository From the Command-Line ...
12:46
Install GitHub CLI // How To Use GitHub From The Command Line - ...
14:43
Beginner's Overview of GitHub and the Command Line - YouTube
How to Push Code to GitHub on the Command Line (2024 updated) - ...
04:53
How Push to Github from Command Prompt/Terminal (2024 Update) - ...
GitHub
github.com › rupa › z › blob › master › README
z/README at master · rupa/z
Z(1) User Commands Z(1)
Author rupa
GitHub
github.com › agkozak › zsh-z
GitHub - agkozak/zsh-z: Jump quickly to directories that you have visited "frecently." A native Zsh port of z.sh with added features. · GitHub
Zsh-z is a drop-in replacement for rupa/z and will, by default, use the same database (~/.z, or whatever database file you specify), so you can go on using rupa/z when you launch bash. ... Here are the latest features and updates. ... Various tab completion bugs resolved. ... Fixes a bug where re-sourcing the script caused an infinite loop when tab was pressed. Props to @maheshpec for successfully diagnosing the problem. Fixes a bug where the completion widget was not identifying options correctly. ... When the user hits tab after entering a command-line argument that uses spaces as wildcards (e.g., z us lo bi), the command line is clear of detritus (i.e., it looks like z /usr/local/bin instead of z us lo /usr/local/bin).
Starred by 2.4K users
Forked by 79 users
Languages Shell
GitHub
github.com › rupa › z › wiki
Home · rupa/z Wiki · GitHub
Short answer: instead of running the script as z.sh you type source z.sh or . z.sh in a shell, or to make it available all the time, put a command in your .bashrc that sources it, or just paste the contents of z.sh directly into your .bashrc.
Author rupa
GitHub
github.com › rupa
rupa (rupa) · GitHub
rupa Follow · Follow · 597 followers · 9 following · @volume.com · philadelphia · httpwww.xyz · x3x4 · x3x4 · Block or report user · Report abuse · Contact GitHub support about this user’s behavior. Learn more about reporting abuse. Report abuse · More · Overview · Repositories · Projects · Packages · Stars · Sponsoring · z · z Public · z - jump around · Shell 17k 1.2k · sprunge · sprunge Public · command line pastebin for google appengine ·
GitHub
github.com › rupa › z › blob › master › z.1
z/z.1 at master · rupa/z
Set \fB$_Z_CMD\fR to change the command name (default \fBz\fR).
Author rupa
GitHub
gist.github.com › mischah › 8149239
Installing und initializing z (https://github.com/rupa/z) with help of Homebrew. · GitHub
January 30, 2018 - Installing und initializing z (https://github.com/rupa/z) with help of Homebrew. ... See README of z for all available options. You need Homebrew to install und init z in the way it is described in this gist: ... # Move next only if `homebrew` is installed if command -v brew >/dev/null 2>&1; then # Load rupa's z if installed [ -f $(brew --prefix)/etc/profile.d/z.sh ] && source $(brew --prefix)/etc/profile.d/z.sh fi
GitHub
github.com › rupa › v
GitHub - rupa/v: z for vim · GitHub
V(1) User Commands V(1) NAME v - z for vim SYNOPSIS v [-a] [-c] [-l] [-[0-9]] [--debug] [--help] [regex1 regex2 ... regexn] AVAILABILITY bash, vim INSTALLATION Put v somewhere in $PATH (e.g. /usr/local/bin/). For the manual page, put v.1 somewhere in $MANPATH (e.g.
Starred by 459 users
Forked by 40 users
Languages Roff 56.8% | Shell 43.2%
Top answer 1 of 4
24
In the z readme, after line 50, it says:
Installation:
Put something like this in your $HOME/.bashrc or $HOME/.zshrc:
. /path/to/z.shcd around for a while to build up the db.
You need to download the z.sh file to a directory of your choosing, then tell your .bashrc where it is, so your terminal can find it. (The same applies for z-shell, which is just another shell system.) Then, after you use bash for a while, z will know your favorite locations.
2 of 4
18
You can download and add to *rc files using command line as so
# Download to latest to home dir
wget "https://raw.githubusercontent.com/rupa/z/master/z.sh" -O "~/z.sh"
# Add to .bashrc
echo "source /path/to/z.sh" >> ~/.bashrc
# Add to .zshrc
echo "source /path/to/z.sh" >> ~/.zshrc
GitHub
github.com › rupa › j2
GitHub - rupa/j2: python version of z, for experimentation
A) Short answer: instead of running the script as j.sh you type source j.sh or . j.sh in a shell, or to make it available all the time, put a command in your .bashrc that sources it, or just paste the contents of j.sh directly into your .bashrc.
Starred by 241 users
Forked by 20 users
Languages Python 78.5% | Shell 21.5% | Python 78.5% | Shell 21.5%
Hacker News
news.ycombinator.com › item
You might want to check out z: https://github.com/rupa/z | Hacker News
August 19, 2013 - I used to use z, but I've since switched to fasd. It's much like z, but also so much better. In addition to being able to do "z <part of directory>" you can do "f <part of file>". So, for example, if I've got a rails project I've worked on a lot recently I know its config.ru is high on frecency, ...
GitHub
github.com › rupa › z › issues › 60
rupa/z
August 23, 2012 - Added the z.sh file from: https://github.com/rupa/z/blob/master/z.sh to: /Users/simonowen/z.sh · I then opened terminal, did some cd, then tried using z, but got the following error: -bash: z: command not found · Tried closing and opening Terminal again, but still get the same error.
Author rupa
DEV Community
dev.to › waylonwalker › comment › 11b36
I ❤️ aliases You gotta check out rupa/z. It's not quite as reliable as an a... - DEV Community
Z(1) User Commands Z(1) NAME z - jump around SYNOPSIS z [-chlrtx] [regex1 regex2 ... regexn] AVAILABILITY bash, zsh DESCRIPTION Tracks your most used directories, based on 'frecency'.
DEV Community
dev.to › jonrandy › comment › 133pj
Install z - it's awesome - github.com/rupa/z — DEV Community
Install z - it's awesome - github.com/rupa/z · Bhupesh Varshney 👾 · Bhupesh Varshney 👾 · Bhupesh Varshney 👾 · Follow · Email · Location · New Delhi, India 🇮🇳 · Joined · Dec 5, 2018 • Aug 3 '20 · Copy link · Hide · Did you mean the Z Shell ?.
GitHub
github.com › rupa › z › issues › 122
array plusequal use breaks old bash · Issue #122 · rupa/z
December 12, 2013 - $ . ./z.sh -bash: ./z.sh: line 222: syntax error near unexpected token _z_precmd' -bash: ./z.sh: line 222: precmd_functions+=(_z_precmd)'
Author rupa
Github-wiki-see
github-wiki-see.page › m › rupa › z › wiki
Home - rupa/z Wiki
Short answer: instead of running the script as z.sh you type source z.sh or . z.sh in a shell, or to make it available all the time, put a command in your .bashrc that sources it, or just paste the contents of z.sh directly into your .bashrc.