85ae438
1 2 3 4 5 6 7 8 9 10 11 12
#!/bin/bash # Prints out the name of the default shell PREFIX='🐚 ' get_default_shell() { echo "$PREFIX$(echo $SHELL |sed 's/.*\///g')" } get_default_shell