Tagged Questions
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 ...
1
vote
2answers
31 views
How to convert ZSH ls timestamps to %Y-%m-%d?
Anyone know how to convert ZSH ls timestamps to %Y-%m-%d?
From This(ZSH):
host1% ls -lrt | tail -1
-rw-r----- 1 user group 4802 Mar 21 15:41 get.csv
To This(BASH):
user@host1:/home/user> 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 ...
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:
...
1
vote
2answers
57 views
Remove current directory from variable containing path
I have a variable which contains the current directory including several parents. For example:
$ pwd
/Users/simont/repositories
$ echo $current
~/repositories
I can strip everything except the ...
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: ...
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?
2
votes
2answers
42 views
zsh: bash script comparison of dynamically generated string
This works as expected:-
x="None of the specified ports are installed"
if [ "$x" = "None of the specified ports are installed" ];
then echo 1;
else echo 0;
fi
I get 1, which is what I am ...
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
0answers
49 views
Tmuxinator, RVM command not found
I'm using tmuxinator and rvm, but have encountered a strange issue:
~|⇒ rvm -v
rvm 1.19.0 (stable) by Wayne E. Seguin <wayneeseguin@gmail.com>, Michal Papis <mpapis@gmail.com> ...
1
vote
2answers
43 views
Shell variable definition and substitution properly quoted in a one-liner?
I want to replace a number of strings within a query with something like the following:
URL="sub.domain.tld" mysql -A --user=username --password="password" --host=hostname usernameuction -e "update ...
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
...
1
vote
1answer
34 views
How to config gerrit refs in Zsh?
In my team, we use gerrit for code review.
As you know, gerrit uses the magical 'refs/for/*'.
Since I do not want to type
git push origin HEAD:refs/for/*
every time I push to remote,
I tried ...
1
vote
1answer
210 views
“command not found” after installation
I seem to be getting the following when I execute npm install bower -g
/usr/local/share/npm/bin/bower -> /usr/local/share/npm/lib/node_modules/bower/bin/bower
bower@0.8.6 ...
1
vote
1answer
305 views
zshrc “command not found: npm”
So I'm looking into learning node.js. I've been following this tutorial to install it and try some stuff out.
At any rate, npm is behaving really strangely. It'll work just fine for a while (I ...
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 ...
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 ...
0
votes
1answer
76 views
Zsh/Bash: Path isn't what it should be
I stumbled upon something I just can't figure out. Following situation: I downloaded the python frontend to control dropbox via command line (dropbox.py). I put this file in the folder:
...
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
67 views
Pipe and regex bash ouput
I'm trying to get the dimensions of a video with ffmpeg. I use the command ffprobe video.mov to get the following data:
ffprobe version 1.0 Copyright (c) 2007-2012 the FFmpeg developers
built on ...
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
2answers
126 views
How can I prompt for yes/no style confirmation in a zsh script?
Using zsh, I'm trying to put a step in my ~/.zprofile where I interactively ask a yes/no style question. At first I tried this bash-style approach, but I saw errors of this form:
read: -p: no ...
2
votes
2answers
67 views
easy way to cleanly dump contents of associative array in bash?
In zsh I can easily dump the contents of an associative array with a single command:
zsh% typeset -A foo
zsh% foo=(a 1 b 2)
zsh% typeset foo
foo=(a 1 b 2 )
However despite searching high and low, ...
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
55 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 ...
5
votes
1answer
139 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?
2
votes
3answers
38 views
python on OSX and echo -n
Context: I ran this snippet on my Mac and noticed the string -n sprinkled in the garbled output. The answer is that sh on Ubuntu understands the -n flag while sh on my Mac does not.
As you can ...
1
vote
1answer
65 views
ZSH completion from script prompt (like BASH's read -e)
In a bash shell script you can prompt the user for input and enable readline completion for the user with the -e flag. (e.g. read -e -p 'GET YOUR FILE: ' file would allow a the user to use ...
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
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
104 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 ...
3
votes
2answers
317 views
command not found: complete
I have a fresh mac in front of me, I installed homebrew (just fine), and oh my zsh (just fine).
I'm trying to install autojump which is a intelligent database of directories. For example, you can ...
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 ...
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 ...
1
vote
1answer
78 views
How to write zsh alias for pushing new branch from current local branch?
Right now when i commit and want to push and create remote branch I did:
app_folder (some_branch)> git push -u origin some_branch:some_branch
Is there a way to write zsh alias ex: gpu which get ...
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 ...
1
vote
3answers
124 views
How can I forward bash/zsh arguments to another shell
I'm working on a system with a lot of tcsh configuration scripts, requiring me to run most programs through tcsh. I've attempted to make this easy for myself by adding this to my ~/.zshrc:
# run ...
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 ...
1
vote
2answers
111 views
Shell equivalent of Perl's die
Is there a shell equivalent (in either bash or zsh) of Perl's die function?
I want to set the exit code and print a message in a single line. I know I can make my own simple function but I'm kind of ...
1
vote
1answer
71 views
How do I put an already running CHILD process under nohup
My question is very similar to that posted in: How do I put an already running process under nohup
Say I execute foo.sh from my command line, and it in turn executes another shell script, and so on. ...
0
votes
0answers
139 views
ImageMagick randomly making images too dark or turning them black and white
Recently I made a rotating wallpaper script, for the most part it works very well, but occasionally one of the images will be suddenly black and white or too dark. It doesn't seem to matter which ...
2
votes
2answers
121 views
Shell script for wallpaper with average for background color
Awhile ago I wrote a script for automatically changing wallpapers for my multimonitor setup. I wanted to change it so that the color that fills the extra space is an average of the images, but it just ...
1
vote
2answers
65 views
Why can I do “cmd & ; cmd2” in zsh but not bash?
Why can I do this in zsh:
zsh$ sleep 5 &; echo foo
[1] 14742
foo
but not in bash?
bash$ sleep 5 &; echo foo
bash: syntax error near unexpected token `;'
Is there any way to do the ...
2
votes
5answers
57 views
Is there a way to reference other parts of a previous command in bash; similar to history expansion
I often need to refer to a piece of text in a bash command for example:
git mv _fav-locations-cluster.html.erb partials/_fav_locations_cluster.html.erb
edit #1
Note that it's going from dashes -> ...
9
votes
2answers
613 views
As a Ruby/Rails Developer, zsh vs bash? What's the advantage? [closed]
I've seen a lot of people recommend zsh over bash for ruby development and i'm failing to understand what zsh offers over bash?
The answerable question for this post is:
What benefit, specific to ...


