Skip to content

Commit

Permalink
Merge pull request cantino#26 from markusjevringgoeuro/support-spaces…
Browse files Browse the repository at this point in the history
…-in-histfile

Support spaces in HISTFILE
  • Loading branch information
cantino authored Dec 7, 2018
2 parents f83e870 + 872c6c3 commit ae641b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mcfly.bash
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export HISTFILE="${HISTFILE:-$HOME/.bash_history}"

if [[ -f "$HISTFILE" ]];
then
tail -n100 ${HISTFILE} >| ${MCFLY_HISTORY}
tail -n100 "${HISTFILE}" >| ${MCFLY_HISTORY}
else
printf "Welcome to McFly\n" >| ${MCFLY_HISTORY}
fi
Expand Down

0 comments on commit ae641b6

Please sign in to comment.