Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
4answers
9k views

about .bash_profile, .bashrc, and where should alias be written in?

it seems that if i use alias ls='ls -F' inside of .bashrc on Mac OS X, then the newly created shell will not have that alias. I need to type bash again and that alias will be in effect. and if i ...
4
votes
3answers
2k views

How to set an alias inside a bash shell script

OSX: This works from the command line: alias ruby="/opt/local/bin/ruby1.9" but in side a shell script, it has no effect. I want to write a script that will switch between ruby 1.8 and ruby 1.9, so ...
4
votes
1answer
374 views

How do I include parameters in a bash alias?

Trying to create: alias mcd="mkdir $1; cd $1" Getting: $ mcd foo usage: mkdir [-pv] [-m mode] directory ... -bash: foo: command not found What am I doing wrong?
3
votes
2answers
77 views

make ignores my python bash alias

My CentOS 5.5 server has both Python 2.4 and Python 2.7 installed (to /opt/python2.7.2). In my ~/.bash_profile I have two aliases pointing to my Python 2.7 install and my PATH configured as: alias ...
3
votes
5answers
1k views

Make “make” default to “make -j 8”

Is there a way that I can make $ make default to: $ make -j 8 ? Thanks!
3
votes
3answers
222 views

single quotes not working in shell script

I have a .bash_profile script and I can't get the following to work alias lsls='ls -l | sort -n +4' when I type the alias lsls it does the sort but then posts this error message "-bash: +4: ...
3
votes
6answers
471 views

how to automatically ignore files in grep

Is there any way I could use grep to ignore some files when searching something, something equivalent to svnignore or gitignore? I usually use something like this when searching source code. grep -r ...
2
votes
1answer
45 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
2answers
56 views

bash_profile alias — Open Coda with PWD

I am working on creating a bash alias so I can just cd to a given directory and run a command which opens the pwd. My script works great, but when I grab ${pwd} it grabs the pwd of the bash_profile ...
2
votes
1answer
456 views

Can't get expand_aliases to take effect

I can't get expand_aliases to take effect in bash. I've tried a lot of different things, and nothing works. Here's the simple test case: /bin/bash -c 'shopt -s expand_aliases; alias cdtmp="cd ...
1
vote
1answer
60 views

bash aliases not recognized by a bash function: sunspot_rails, jruby, rspec

Aliases below for running sunspot in the background work Aliases below for finding and killing those instances work ENV variables for the sunspot ports are accessible But, Functions for running ...
1
vote
2answers
51 views

Current Working Directory output in an alias

I want to create an alias that will print out the current working directory sub name. I have this: BASENAME=${PWD##*/} alias wai="echo $BASENAME" This outputs the directory subname of the ...
1
vote
2answers
94 views

Invoke bash, run commands inside new shell, then give control back to user

This must either be really simple or really complex, but I couldn't find anything about it... I am trying to open a new bash instance, then run a few commands inside it, and give the control back to ...
1
vote
1answer
159 views

SSH productivity question about bash-alias: how can I queue a command (screen -x) after SSH login?

I have bash alias set up to connect me to my various servers/ports easily, but I realize about 90% of the time I type in screen -x immediately after logging in. Can I queue a text command to be sent ...
1
vote
2answers
764 views

bash alias with argument and autocompletion

I have a bunch of scripts in directory that exists on the path, so I can access each wherever I am. Sometime those are very simple util scripts that "vims" the file. From time to time I would like to ...
1
vote
2answers
549 views

String concatenation for a bash script command

I'm trying to write an alias in my ~/.bashrc of this form: alias a="foo; osascript -e 'tell application "Terminal" to do script "bar"; baz" (where bar launches in a new Terminal window, as per this ...
1
vote
4answers
947 views

How to find out where alias (in the bash sense) is defined when running Terminal in Mac OS X

How can I find out where an alias is defined on my system? I am referring to the kind of alias that is used within a Terminal session launched from Mac OS X (10.6.3). For example, if I enter the ...
1
vote
2answers
192 views

want to set an ls alias, to take parameters

i have the following alias set in my .bashrc: alias la='ls -laG' but i would really like to issue a command thusly: la foo/bar i guess i have to write a shell script? or is there some xargs way? ...
1
vote
6answers
657 views

How can I define a bash alias as a sequence of multiple commands?

I know how to configure aliases in bash, but is there a way to configure an alias for a sequence of commands? I.e say I want one command to change to a particular directory, then run another command. ...
0
votes
1answer
15 views

Is there a way to expand aliases in a non-interactive sh shell?

I have a collection of aliases defined in ~/.aliases which I would like to make available to sh even when it is run non-interactively. My system has been setup in the typical way so that sh is a ...
0
votes
1answer
131 views

Can I create my own bashrc file, something like “.xyzrc” and then import it from .bashrc?

I want to put my dot files on GitHub , but I don't want all my aliases showing up publicly. So my plan is to put my aliases in a seperate file and .gitignore it. However I get a permission denied when ...
0
votes
0answers
17 views

how? alias for hiding commands from bash history

I am trying to create an alias for hiding my commands from being logged by bash history. The command: history -d $((HISTCMD-1)) && \ I have tried these aliases however to no avail, ...
0
votes
1answer
78 views

Creating a 'git publish' alias, but need to store temporary variable

Based on this article I wanted to create a similar alias (flow described below). With the author/article's comments disabled, I thought I'd ask it here. Assuming you are on a 'topic' branch, I'd ...
0
votes
2answers
70 views

Create temporary aliases in zshrc

Is there a way to create an temporary aliases, mainly to cut down typing dir paths, especially those not used as often to warrant adding to .bash_aliases? Thanks
0
votes
2answers
155 views

Custom alias fails when used with sudo

alias slt=open -a "Sublime Text 2" Doing slt /regular/file works. Doing sudo slt /etc/hosts fails. sudo: slt: command not found What gives?
0
votes
1answer
203 views

Running a ruby script with options from inside another ruby script?

First, sorry if this is a stoopid question, but I don't know much about ruby. I have a ruby script I use often, and I use several options, but only the last option is the one that changes, it looks ...
0
votes
2answers
140 views

How to add/use a variable to my bashrc file?

I'm a newbie to Linux operating system I need to do the following:- I have multiple projects under "~/myprojects" Think of like >ls ~/myprojects project1 project2i newproject project_possible.... ...
0
votes
3answers
175 views

create alias with argument

I want an alias that produce folowing result: $cd /home/ok [clear screen] /home/ok total 452K -rwx--x--x 1 user gigl 16K Oct 1 14:08 ok0 drwx------ 5 user gigl 0 Oct 1 14:02 ok1 drwx------ 5 ...
0
votes
2answers
155 views

What's the most efficient way to get a sorted, human-readable du output on Mac OS 10.6?

I used to have this sweet alias for du I called dusort that would print out a human-readable list of sizes for the top-level subdirectories+files sorted by size. It was like a mini-filelight for mac ...
0
votes
3answers
484 views

Bash alias to open Vim at last cursor position mark

The mark " in Vim takes you to your last cursor position. I want to create an alias that will open my Vim instance and jump to that mark; something which is obviously extremely useful. This works ...
0
votes
1answer
216 views

May I define aliases elsewhere than into .bashrc?

We are several persons using the same login id on Linux Box. I want to define my own aliases without interfering with anyone. In the .bashrc, I define a alias to my bash file defining my own ...