Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions home/.bash_aliases
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/bin/sh -e
alias pyserver='python -m SimpleHTTPServer 8000'
alias debug='tail -f --follow=name --retry `git root`/app/tmp/logs/debug.log'
alias error='tail -f --follow=name --retry `git root`/app/tmp/logs/error.log'
Expand Down
1 change: 1 addition & 0 deletions home/.bash_completion
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/bin/bash
# disable bash completion of tilde when `set expand-tilde Off`
# see https://bugs.launchpad.net/ubuntu/+source/bash-completion/+bug/622403
# Expand variable starting with tilde (~)
Expand Down
1 change: 1 addition & 0 deletions home/.bash_logout
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/bin/bash
# ~/.bash_logout: executed by bash(1) when login shell exits.

# when leaving the console clear the screen to increase privacy
Expand Down
1 change: 1 addition & 0 deletions home/.bash_profile
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/bin/bash
if [ -f ~/.profile ]; then
. ~/.profile
fi
Expand Down
1 change: 1 addition & 0 deletions home/.bashrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/bin/bash
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
Expand Down