1
vote
2answers
35 views

getting the pid of a process in zsh

I am coding on a Red Hat Machine and I want to get the process id of a process in the interactive mode as well as the in a script. In bash 'pidof' works but not in zsh. What would be the equivalent ...
0
votes
1answer
50 views

ZSH – Change color in tty [closed]

I use zsh in tty (so without X) and I would like to know if it is possible to change the colors. Not the prompt colors, but by example the "htop" colors, or the colors of directory and file with ls ...
2
votes
3answers
42 views

How to compare contents of two directoriers in bash?

Lets say there are two dirs /path1 and /path2 for example /path1/bin /path1/lib /path1/... /path2/bin /path2/lib /path2/... And one needs to know if they are identical by contents (names of ...
1
vote
2answers
79 views

replace strings in zsh command line

I use zsh and emacs keybindings. Some time I need to execute the same command with different input. The input ususally have common substrings. Is there an easy way to replace parts of previous command ...
8
votes
1answer
76 views

What is the meaning of !#:3?

curl http://beyondgrep.com/ack-2.02-single-file > ~/bin/ack && chmod 0755 !#:3 What is the meaning of !#:3, from ack installation guide?
7
votes
2answers
97 views

Why must I enter “\\\0” to create a string “\0” in zsh?

> echo 0 0 > echo \0 0 slu@dev:~ > echo \\0 slu@dev:~ > echo "\\0" # <--- What!!? slu@dev:~ > echo \\\0 slu@dev:~ > echo "\\\0" \0 slu@dev:~ > bash ...
3
votes
1answer
69 views

General solution for bypassing file headers in shell commands

I make extensive use of piping multiple linux shell commands, for example: grep BLAH file1 | sed 's/old/new/' | sort -k 1,1 > file3 My files often have a header line, and often I have to ...
1
vote
2answers
56 views

How to autostart jobs when using zsh [closed]

I switched to zsh for my daily usage recently. One problem that I come across is that how I can autostart some background command line executable(for example, fetchmail -d 1800). When I add the line ...
2
votes
0answers
147 views

sudo mkdir /etc/abc gives command not found, but either sudo and mkdir used alone works [closed]

I can do sudo touch /etc/abc and sudo rm /etc/abc and it works, so does mkdir ~/abc but when I do sudo mkdir /etc/abcd I get sudo: nocorrect: command not found Any ideas? I'm using zsh ...
0
votes
0answers
38 views

Completion for Hadoop command in zsh

I love the tab completion feature in zsh. But when I use hadoop command, it seems do not work anymore. So is there any idea to auto-completion for hadoop command in zsh? Many thanks.
0
votes
1answer
41 views

Tmux: pane title (#T) is reported as “fg” rather than something more informative

Is there a way to get Tmux to show a more informative pane name? If in a particular pane I have suspended a process and come back to it (with Zsh that's invoking it with either fg or something like ...
0
votes
1answer
134 views

git set remote path to git executable files over ssh

I connect over ssh to a distant machine using this in my ~/.ssh/config: Host myserver User myusername ProxyCommand ssh myserver2 exec nc myserver 22 But when I try to pull the remote git ...
5
votes
1answer
133 views

How can I set the default bash/zsh mode to vi command mode instead of vi insert mode?

So in my bash/zsh terminals I have the set -o vi. But then I need to press ESC to get into command mode. I can't figure out how I could make that command mode the default behavior?
0
votes
5answers
46 views

How to create file with list of duplicate values using linux shell?

I have a text file which contains a list of values: ASDSAV ASDSAD ASDFSA and need to get ASDSAV 7 ASDSAD 7 ASDFSA 7 i.e. join it with a file that is just one column of 7s ...
-1
votes
1answer
43 views

How do I rewrite this bash command line into zsh? [closed]

I need to input this command. It is written in bash, but my terminal is zsh. How do I rewrite it? ssh username@rserver.com -L 127.0.0.1:8888:*:11111
0
votes
2answers
96 views

different behavior of which command in zsh and bash

By using zsh for some time along with oh-my-zsh framework, I noticed that which command behaves different in zsh, than in bash. What I mean: # on zsh ilias@ilias-pc ~ ➜ which ls ls: aliased to ls ...
0
votes
2answers
201 views

How to kill all background processes in zsh?

As in the title - how to kill all background processes in zsh?
0
votes
2answers
151 views

Bash has colors, bold and underlined characters. Why not Italic? [closed]

I am naming bash, but the question applies to other linux shells as well. Is there a reason why italic characters have not been included?
0
votes
1answer
122 views

Rename multiple files with zmv but not directories

I would like to rename multiple files (add an extension).. i can use zmv of zsh with autoload zmv zmv -n '(**/)(*)' '$1$2.myextension' but this will rename also all the dirs that are inside the ...
0
votes
1answer
509 views

Adding a new entry to the PATH variable in ZSH

I'm using zsh and I'm trying to add a new entry (/home/david/pear/bin) for the PATH variable but I don't know how. Here's my .zshrc file (Ubuntu 12.04) # Set up the prompt autoload -Uz promptinit ...
1
vote
1answer
41 views

How do I get the # of logical CPUs in zsh or bash?

How do I get the # of logical CPUs in zsh or bash? I want to create a makep alias that passes the # of cpus to 'make -j'.
5
votes
5answers
273 views

How to find the Set - Subset of two files from the command line?

I have two files with sorted lines. One file (B) is a subset of the other file (A). I would like to find all lines in A that ARE NOT in B. Ideally, I would like to create a file (C) that contains ...
1
vote
6answers
151 views

Infinite recursion aliasing `cd`

I want to record my most recent cd across any one of my terminals. I thought a good way to do this would be to write a simple bash script wrapping cd: #!/bin/bash cd $1 && echo `pwd` > ...
4
votes
4answers
299 views

How to zero-pad numeric variables in zsh (and maybe also bash?)

In zsh, when I have to create a bunch of files with zsh, I usually do something like: for x in $(seq 1 1000); do .....; done This works fine, it gives me files with names foo-1.txt .. foo-1000.txt. ...
1
vote
2answers
436 views

rvm environment load

what I need to write to my environment to repair my rvm? (and when I had put [[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" into a top of .zshenv file and the .zshrc file ...
4
votes
1answer
362 views

Suffix aliases in bash

Suffix aliases are the only reason I'm considering to switch to ZSH but I want to stick with bash. So is it possible to have something like suffix aliases in bash? for those that doesn't know what a ...
2
votes
3answers
665 views

Transfer all environment variables from one shell to another automatically

I want to transfer all environment variables of the one shell (in my case: kornshell) to another shell (in my case: the z-shell) automatically. If possible, the transfer should be in the startup file ...
3
votes
3answers
231 views

git and hardlink in linux

I have a git repo test, and a file (zsh config file), and ln ~/.zshrc test/zshrc then I changed .zshrc file,the zshrc file in git repo didn't change,is that git cannot deal with hardlink? if so, ...
2
votes
2answers
137 views

Shell script best way to remove files not in a pair

I have a set of files that come in pairs: /var/log/messages-20111001 /var/log/messages-20111001.hash I've had several of these rotate away and now I'm left with a ton of ...
0
votes
2answers
2k views

Adding init.d service (chkconfig / autocomplete in shell)

I've made a startup script, (i.e. myserviced) and put it in /etc/init.d/ I ran chkconfig --add myserviced I can start/stop/restart the service just find using: service myserviced start etc. ...
0
votes
1answer
148 views

Auto complete behavior in biolinux

Using the terminal under biolinux distro I realized that when I use the tab for auto completion the possible matching options are displayed under the command line and if I keep 'tabbing' each the ...
4
votes
1answer
446 views

ZSH Bindkey Reverse Lookup

Can anyone tell me what the key sequence is for these? I know if I do cat and type key presses I can get the code for it but how do I reverse that process to figure out what to press for ...
4
votes
1answer
1k views

How to stop a zsh script from being suspended (tty output)

I have a zsh script that I want to run such that it also loads up my .zshrc file. I believe I have to run my script in interactive mode? Thus, my script begins like: #!/bin/zsh -i if [ $# = 0 ] ...
3
votes
3answers
181 views

Program dumps data to stdout fast. Looking for way to write commands without getting flooded

Program is dumping to stdout and while I try to type new commands I can't see what I'm writing because it gets thrown along with the output. Is there a shell that separates commands and outputs? Or ...
4
votes
1answer
274 views

How can I intermittently show my history command number in my shell prompt?

How can I intermittently show my history command number in my shell prompt? For instance, rather than showing it in EVERY prompt, just do it every 7 times. (I'm using zsh, but I think bash should be ...
4
votes
5answers
529 views

How can I read documentation about built in zsh commands?

It's frustrating when I do something like man bindkey and i get: BUILTIN(1) BSD General Commands Manual BUILTIN(1) NAME builtin, !, %, ., :, @, {, }, alias, alloc, ...
4
votes
5answers
8k views

bash vs csh vs others - which is better for application maintenance? [duplicate]

Possible Duplicate: What Linux shell should I use? I am starting to get proficient in a Linux environment and i'm trying to pick a weapon of choice in terms of command shell scripting (as ...
1
vote
2answers
67 views

zsh give file argument without creating a file - syntax?

Suppose I have have a program P which has a filename as argument. For example P file reads the file "file" and does something with it. Now sometimes the content of "file" is very small, e.g. ...
5
votes
3answers
2k views

How to tail -f the latest log file with a given pattern

I work with some log system which creates a log file every hour, like follows: SoftwareLog.2010-08-01-08 SoftwareLog.2010-08-01-09 SoftwareLog.2010-08-01-10 I'm trying to tail to follow the latest ...
9
votes
2answers
4k views

alias with parameters

If there is any possibility to use the parameters in zsh aliases? Something like this: alias ssh_nokia="ssh root@<ip_parameter>" Usage: ssh_nokia 192.168.1.2
5
votes
1answer
867 views

Kill/Yank (cut/paste) in ZSH

I use zsh and have the Emacs keybindings set up for it. I'd love to have it replicate all my regular Emacs text manipulation commands. One which I miss is the Kill/Yank keys. It would be nice if I ...
1
vote
1answer
235 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)" nonexistantprogram ...
3
votes
2answers
641 views

Case-Insensitive ZSH Suffix Aliases

In my .zshrc I've set up suffix completion aliases like this so that I can open files more easily: alias -s -- txt='mate -w' Which allows me to open text files in my text editor without prepending ...
7
votes
4answers
3k views

How does “while (sleep 100 &!) do; done” work in zsh, and how could it be replicated in bash?

According to wikipedia ( http://en.wikipedia.org/wiki/Fork_bomb ), the forkbomb ":(){ :|:& };:" can be stopped with the zsh command "while (sleep 100 &!) do; done", which will supposedly spawn ...
10
votes
4answers
3k views

Case-insensitive Glob on zsh/bash

I need to list all files whose names start with 'SomeLongString'. But the case of 'SomeLongString' can vary. How? I am using zsh, but a bash solution is also welcome.