Tagged Questions

1
vote
5answers
195 views

How to set environment variable for everyone under my linux system?

Can I have certain settings that are universal for all my users?
3
votes
5answers
118 views

Bash PWD Shortening

I'm looking for a bash function that will shorten long path names to keep my PS1 variable from getting excessively long. Something along the lines of: /this/is/the/path/to/a/real …
1
vote
2answers
51 views

How can I detect that emacs-server is running from a shell prompt?

I want to have my .bashrc detect if running emacsclient would work in lieu of running emacs. Basically: if emacs_server_is_running; then EDITOR=emacsclient VISUAL=emacscl …
2
votes
0answers
215 views

What is .bashrc file? [closed]

Unix shells when starting read .bashrc file and execute commands contained in them. What is this file and what do they execute?
0
votes
2answers
114 views

Hide a bash function internals..

Hi, My .bashrc looks something like this... export PERL5LIB="/tools/perl/Linux/${PLAT}/lib/perl5/5.10.0/${PLAT}-thread-multi" export PERL5LIB="${PERL5LIB}:/tools/perl/Linux/${P …
2
votes
2answers
149 views

commands from .bashrc not available in emacs

I have some aliases and functions defined in ~/.bashrc. I start emacs from a terminal window using emacs -nw When I execute M-x shell-command, the aliases and functions from ~/. …
1
vote
6answers
146 views

Creating a .bashrc function to search through all files for a particular string

I have a useful little command that searches through all files & subdirectories for a particular string: find . -name "*" -exec grep -il "search term" {} \; I'd like to turn …
1
vote
3answers
435 views

.bashrc at ssh login

When I ssh into my ubuntu-box running Hardy 8.04, the environment variables in my .bashrc are not set. If I do a source .bashrc, the variables are properly set, and all is well. …
1
vote
1answer
357 views

How can you export your .bashrc to .zshrc?

I am trying to move to zsh from Bash. I put my .bashrc directly to my .zshrc, and it caused a lot of errors when I try to use Bash again. How can you export your .bashrc to .zshr …
2
votes
7answers
2k views

Detect OS from a bash script

I would like to keep my .bashrc and .bash_login files in version control so that I can use them between all the computers I use. The problem is I have some OS specific aliases so …
0
votes
1answer
131 views

Unable to put TERM to .bashrc in Mac

Stevey recommends to set the following command to .bashrc TERM=xterm-256color I put the code to the top of my .bashrc and I have now a flashing black green terminal. The font co …
-1
votes
3answers
228 views

Executing own Unix command in terminal?

I made an Unix command, macmac2unix, which converts Mac's Word file for Unix platforms. I would like to run the command as $macmac2unix file1 file2 file3 ... Problem: How can I …
6
votes
3answers
561 views

xargs doesn’t recognize bash aliases

I'm trying to run the following command: find . -iname '.#*' -print0 | xargs -0 -L 1 foobar where "foobar" is an alias or function defined in my .bashrc file (in my case, it's a …
14
votes
5answers
2k views

What’s the difference between .bashrc, .bash_profile, and .environment?

I've used a number of different *nix-based systems of the years, and it seems like every flavor of Bash I use has a different algorithm for deciding which startup scripts to run. …