mirror of
https://github.com/harish2704/dotFiles.git
synced 2026-09-10 15:21:09 +00:00
11 lines
160 B
Bash
Executable File
11 lines
160 B
Bash
Executable File
#!/usr/bin/env bash
|
|
export HISTSIZE=10000
|
|
export HISTFILE=$PWD/.bash_history
|
|
export HISTCONTROL=erasedups
|
|
|
|
if [[ $1 == '-n' ]]; then
|
|
konsole &
|
|
else
|
|
bash
|
|
fi
|