Setup bash environment with bash-now

Mostafa Kamal
code4mk organization
2 min readJul 28, 2018

--

#code4mk #bash #shell #bash_alias

# Why use bash-now

  • easily setup bash (shell) enviroment any os
  • setup your own alias
  • easily coding with bash

# Install
git clone — depth=1 https://github.com/code4mk/bash-now.git
cd bash-now
# with bash terminal
./install.sh
# without bash terminal
install.sh

# Uninstall
cd bash-now
# with bash terminal
./uninstall.sh
# without bash terminal
uninstall.sh

# Delete clone directory
# hit terminal
bash -l
./bash-now-rm.sh

# bash_alias directory
~/bash-alias directory
bash-it all alias here
> all alias store here
> you can add your alias file just name (no extension)
# alias structure
alias me=’whoami’

# How run alias
> go to terminal
> bash -l
> me
# username
# stay with bash -l

# bash coding
~/bash-coding directory
#without extension
> create file inside bash_coding directory
> go to terminal
> bash -l
# test hit >> hi
> file_name (no extension)

--

--