aboutsummaryrefslogtreecommitdiff
path: root/modules/default_shell
blob: 913ccb22e769a8fe19f60d56c35b6190ea3697cb (plain)
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