1
vote
2answers
31 views
Recommendation - Zsh vs FishShell. Scripting, productivity and poweruser perse.
I have spent sometime trying to pick one, on net comparisons are for zsh vs bash and fish vs bash. But, I Could not find any comparison for zsh vs fish. I program in c/c++, apart f …
0
votes
3answers
23 views
Text disappears when typing long commands in zsh on OSX?
When I'm typing a command longer than around 20 characters the text disappears and the cursor moves to a different location in the terminal. How do I stop this? I find it difficult …
1
vote
1answer
13 views
ZSH Prompt/RPrompt Conflict
I currently have my ZSH PROMPT variable set up as:
PROMPT=$'[%{\e[0;32m%}%n@%m:%~%{\e[0m%}]>
and my RPROMPT variable as:
RPROMPT=$'[%{\e[0;32m%}%T\e[0m%}]'
The effect I'm wo …
2
votes
2answers
104 views
How do I tell Zsh to write the current shell’s history to my history file?
I work in a place that has gazillions of tools which require tons of options, so I rely on my shell's history significantly. I even back it up every now and then just to make sure …
0
votes
1answer
54 views
Enable zsh using 8th bit as Meta without warning
In my quest to configure my shell to work exactly how I want it with respect to the alt/meta key I am having some trouble. Recently I added "bindkey -m" to my .zshrc and now whenev …
2
votes
2answers
72 views
How exactly does zsh expand globs?
I have a C program that displays it's command-line by iterating through the argv variable.
#include <stdio.h>
int main(int argc, char *argv[]){
int i = 0;
printf("- …
1
vote
3answers
245 views
Opening a new terminal tab in OSX(Snow Leopard) with the opening terminal windows directory path
Hi all.
I've been Googling for a while looking for a simple way to do this, and I can't find one.
I have a custom terminal environment set up (zsh) with various aliases and funct …
0
votes
3answers
140 views
Unable to activate Zsh installed by MacPorts
I put unsuccessfully Zsh installed by MacPorts as my login shell by setting the following path to Settings
/opt/local/bin/zsh
I put it to the Advanced options at the User accoun …
2
votes
3answers
118 views
pipe the output of a command into less or into cat depending on length
First, let me state that this is a programming question (and thus does not belong on superuser et. al.) because I'm talking shell programming. This could almost be a golf question, …
1
vote
0answers
30 views
How to enable git file tab completion with zsh compinit?
I have a problem with the zsh tab completion: After running:
autoload -U compinit
compinit
Git tab completion for files does not work any more. For example if I type git add my_f …
1
vote
1answer
36 views
Command as window’s name in Ubuntu’s ZSH
How can you convert the following command for Ubuntu's ZSH?
DavidPashley's command for Bash
trap 'echo -e "\e]0;$BASH_COMMAND\007"' DEBUG
if [ "$SHELL" = '/bin/bash' ]
then
c …
0
votes
1answer
19 views
How does one override an existing zsh keyboard completion?
I would like to enable zsh to autocomplete modules for yast2 (an OpenSuSE control panel), but it seems to already have some things defined. I can run
compctl -k "(hello world)" no …
11
votes
0answers
482 views
Why is bash everywhere? [closed]
Bash is used by default in every Linux distro I have tried, over alternatives like zsh. Is there a technical or historical reason for this?
1
vote
1answer
91 views
Altering zsh’s $path variable in a script that is to be sourced
I've inherited a zsh script which sets up a bunch of environment variables for some simulations. It wants to edit the $path variable so that some perl scripts can be found:
types …
0
votes
0answers
69 views
How to set permissions for folder in Unix/Linux Ubuntu [closed]
This is not necessarily direct computer science question but its closely related.
Is there any way to do this.
I am using Z Shell zsh.
I want to set up so whenever i am in folde …
