Tagged Questions
0
votes
2answers
27 views
Rename a file in a directory without retyping the directory name
Say we have a file test.txt in my_directory that I want to rename to yeah.txt.
Is there a way with zsh (or even just bash, just to know) to avoid retyping my_directory?
I find the following a bit ...
1
vote
2answers
36 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
3answers
39 views
Make stdin and stderr visible
is there a way to make stdin and stderr visible in unix bash/zsh/whatever?
Maybe turn the stderr output to red or something like that.
It is always a pain if you are figuring out why you can't parse ...
0
votes
0answers
41 views
bash/zsh: which files get loaded at login?
Today when I checked my $PATH variable in Z shell (on OS X 10.8.3), I got the following result (I broke the lines for clarity):
/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:
...
0
votes
2answers
39 views
bash: can read be used as a command or expression?
I want to make a oneliner loop that reads and checks what it read.
This surely won't work:
while [[ read line != "q" ]]; do; echo "enter q to quit: "; done
Zsh here tells me condition expected: ...
2
votes
1answer
53 views
Zsh tab completion: Is there any plugin or feature that can allow for a MRU tab-completion scheme?
I find myself doing stuff like typing the last part of a command name because the beginning of it gets completed with other commands. Of course most other shells can't even complete stuff in this way ...
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?
0
votes
1answer
99 views
Command Prompt Directory Styling
I have a particular need for adjusting the command prompt. At the moment i am using Holmans Dotfiles and I want to further customize it in order to create a prompt that's more readable and clear. What ...
1
vote
1answer
70 views
How to make Emacs 's shell mode source my profile file?
I have defined some aliases and function snippets int some of my profile files, say, ~/.zprofile. But Emacs never reads them. There is already a topic about it. However, it's not enough:
It cannot ...
0
votes
1answer
66 views
Sending output to tty is not producing expected results [duplicate]
I'm clearly not expecting the right results.
$ man less
In another terminal:
$ ps u
# Find that pid of less is 45783
$ lsof -p 45783
COMMAND PID USER FD TYPE DEVICE SIZE/OFF ...
0
votes
2answers
54 views
How to make byobu forward-word and backward-word with CTRL+arrow?
When used in uxterm zsh is jumping words when I press ctrl+left and ctrl+right.
When used in plain unconfigured byobu (tmux backend) it is not. The cursor sits there doing nothing.
I can however ...
7
votes
2answers
98 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
...
0
votes
1answer
57 views
use zsh's built in pager instead of less
Suppose I've got a giant command
echo "start string `complexcommand -with -many args | cut -d ' ' -moreargs | sed 's/you/get/g' | grep -v "the idea" | xargs echo` ending string" | program | less -S
...
1
vote
1answer
55 views
show git diff and git status simultaneously
I'd like a way to get a pager-view (less) of a buffer of git diff and git status to get a nice complete summary of the state of my working changes. It helps because git diff alone will hide the staged ...
3
votes
1answer
70 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 ...
0
votes
2answers
62 views
Shell script with args, where the args are files with spaces
I wish to use a shell script that accepts a for loop of a directory for an imagemagick script. The shell script is this:
#!/bin/sh
# ~/scripts/mkhdr.sh
convert -gaussian $1 $2 - | composite -compose ...
1
vote
1answer
54 views
Terminating a shell function non-interactively
Is there a way to terminate a shell function non-interactively without killing the shell that's running it?
I know that the shell can be told how to respond to a signal (e.g. USR1), but I can't ...
4
votes
1answer
66 views
How to define a “die” shell function?
Note: this is not a duplicate of In bash, is there an equivalent of die "error msg" , as illustrated at the end of this post.
Consider the shell function
foo () {
echo "testing..." ...
1
vote
2answers
57 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 ...
0
votes
1answer
80 views
Converting a history command into a shell script
This is sort of one of those things that I figured a lot of people would use a lot, but I can't seem to find any people who have written about this sort of thing.
I find that a lot of times I do a ...
0
votes
0answers
18 views
Adding “exceptions” to a symlink maker/generator
This is my current script that generates the symlinks (which I use with new OS installations):
https://github.com/Greduan/dotfiles/blob/master/scripts/symlinks.sh
There is only one problem with this ...
1
vote
1answer
26 views
Documentation on the `find` command in Zsh
I have seen the find command in many places many times, a couple of examples is:
for source in `find $dotfiles_root -maxdepth 2 -name \*.symlink`
Or:
if ! [ -f git/gitconfig.symlink ]
Or:
if [ ...
0
votes
1answer
24 views
Figure out the destination of `ln -s` using script
First, here's the script I'm talking about:
https://github.com/Greduan/dotfiles/blob/master/scripts/symlinks.sh
Check line 20. It has the following content
dest = "$HOME/.`basename ...
1
vote
1answer
53 views
Why does ZSH hang on empty redirection?
To truncate a file in a unixy environment you would commonly use:
$ > file
In bash (also dash), the file is truncated (or created if it doesn't exist), and then the prompt returns. In zsh, the ...
0
votes
1answer
46 views
How can I pass each filename to my function?
I'm trying to write a simple function that will allow me to interactively unstage files from Git. Here's what I have so far:
reset_or_keep () {
echo "Received $1"
}
interactive_reset () {
local ...
1
vote
1answer
44 views
Autocomplete backslashes in zsh
Is there a zsh script that would allow me to auto complete spaces with backslashes?
For example:
assume there is a folder called "My folder" with a space in between.
If I want to get inside, I
cd ...
1
vote
2answers
39 views
How can I modify zsh to autocomplete `source` with the local directory before the $PATH?
I can't count the number of times I've typed: source en<tab> only to be left with a bunch of garbled text on the screen because it sourced the program env instead of the local env.sh.
I tried ...
0
votes
1answer
36 views
ZSH completion order
I have a ZSH completer that provides the expected completions, but provides them in lexicographical order, as opposed to the order in which they were added via compadd:
_matcher_complete() {
(git ...
5
votes
2answers
63 views
weird behaviour of wildcharacter * in shell script
In my shell script I have following code
echo * | tr ' ' '\n'
Here I noticed that although I was using * , it was skipping hidden files(.*)
After that I tried an obvious change
echo .* | tr ' ' ...
2
votes
0answers
56 views
zsh in IntelliJ
I wanted to get a zsh terminal running in IntelliJ, I set up an external tool which was just zsh and set the working directory to my home directory. When I ran it however there were 2 problems ...
0
votes
1answer
51 views
How to add last command in zsh prompt?
I do not want the command number or the exit status, I want the command to be displayed in my zsh prompt. Does anybody know if this is possible, and how to do this?
Thanks!
5
votes
1answer
140 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?
1
vote
1answer
28 views
How to get quoted arguments in the correct way?
I've got function
calc() {echo "${1}"|bc -l;}
it works for 2+2 but when I want something alike 10^4
calc 10^4
zsh: no matches found: 10^4
yes I'm getting the same with bc -l
>>echo ...
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 ...
0
votes
2answers
112 views
chsh: Operation is not supported by the directory node when trying to change shell to zsh
I'm trying to install zsh as my shell.
I've used curl to get the files.
curl -L https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh | sh
But when it gets to changing the shell it ...
1
vote
2answers
109 views
zsh: Expand a previous argument in the current command line
I find myself often wanting to do simple commands like:
cp /really/long/path/from/file.txt /really/long/path/to/file.txt
Although I already use shortcuts like !! and !$ often, it would be nice to ...
0
votes
1answer
60 views
Do aliases slow down a shell's start? [closed]
Sometimes my shell (zsh) takes longer to start than usual (I open the terminal, and it hangs a bit until I can input commands).
I have a few aliases on my .zshrc (well, actually they're in a ...
2
votes
2answers
105 views
How do write commands that output (file) names with spaces to make them work within backticks?
Ever the lazy unix/linux command line user, I use quite a few little shell scripts to help me avoid typing.
For example, I have a script lst that prints the name of the most recent file in the ...
3
votes
1answer
168 views
How can I capture output of background process
What is the best way of running process in background and receiving its output only when needed?
Intended usage: make prompt-outputting script with heavy initialization be initialized once per ...
1
vote
2answers
56 views
Look for a file in parent dir if it is not in current dir
I'm trying to make a shell function that looks for a file existence in the current dir. If the file doesn't exists if the current dir, it should try the parent dir, and go up to the root of the ...
1
vote
1answer
75 views
Synchronizing Current Directory Between Two Zsh Sessions
I have two iTerm windows running zsh: one I use to documents in vim; the other I use to execute shell commands. I would like to synchronize the current working directories of the two sessions. I ...
0
votes
0answers
24 views
date command output, preceded by 7m escape code in zsh [duplicate]
Possible Duplicate:
extra output in zsh when define git log output format
When I add the seconds format: %S or %s, some plugin or zsh aspect is processing it.
± % date -u "+%Y-%m-%d%y"
...
2
votes
1answer
105 views
zsh clear RPS1 before adding line to linebuffer
I'm a vim user, and just recently started playing with zsh to be able to use vi mode in the shell (which isn't practical in bash due to lack of insert/command mode indicator). After reading some ...
0
votes
2answers
89 views
How to repeat last command parameter in ZSH [closed]
I often need to move file from one location to other, but it requires copying and pasting huge part of the command. For example:
mv ~/Projects/foo/bar/baz.img ~/Projects/foo/bar/fiz.dmg
Is it ...
0
votes
1answer
205 views
ZSH not recognizing my aliases?
Using iTerm2 with zsh and it isn't recognizing my aliases. Sometimes I have to work in an IDE and can't just easily vim something and the stupid people thought it a good idea to name their ...
1
vote
2answers
75 views
How to separate string into shell arguments?
I have this test variable in ZSH:
test_str='echo "a \" b c"'
I'd like to parse this into an array of two strings ("echo" "a \" b c").
i.e. Read test_str as the shell itself would and give me back ...
0
votes
2answers
117 views
Running one command at a time in a shell script
I am using Mac OS and zsh. I am running a shell script that launches several Java programs. They terminate once they have created their output (they are essentially scripts). However, it seems that my ...
0
votes
4answers
156 views
Sync shell script fails on ls when file not found
I have written a shell script to sync my dotfiles repository to my home directory. This was working fine in Cygwin (zsh), but I've just migrated to Linux (zsh on Xubuntu 12.10) and it's failing.
The ...
0
votes
1answer
73 views
For loop in terminal
I have a script which I need to run with many input combinations. Currently I'm doing it with a perl script but I want to learn how to do it in a shell.
I need to run ./script.pl a b
for all ...
0
votes
2answers
255 views
zsh run a command stored in a variable?
In a shell script (in .zshrc) I am trying to execute a command that is stored as a string in another variable. Various sources on the web say this is possible, but I'm not getting the behavior i ...

