-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Martin Vala
authored and
Martin Vala
committed
May 10, 2012
1 parent
3bfdb3d
commit 9d1667d
Showing
4 changed files
with
32 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# /etc/skel/.bashrc | ||
# | ||
# This file is sourced by all *interactive* bash shells on startup, | ||
# including some apparently interactive shells such as scp and rcp | ||
# that can't tolerate any output. So make sure this doesn't display | ||
# anything or bad things will happen ! | ||
|
||
|
||
# Test for an interactive shell. There is no need to set anything | ||
# past this point for scp and rcp, and it's important to refrain from | ||
# outputting anything in those cases. | ||
if [[ $- != *i* ]] ; then | ||
# Shell is non-interactive. Be done now! | ||
return | ||
fi | ||
|
||
|
||
# Put your fun stuff here. | ||
|
||
# added CDPATH | ||
export CDPATH=".:~/git" | ||
|
||
# adds $HOME/bin to PATH | ||
export PATH="$PATH:$HOME/bin" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/bash | ||
|
||
cp .bashrc ~/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/bash | ||
|
||
rm -Rf ~/.bashrc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters