We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44bb8d5 commit 7ab297fCopy full SHA for 7ab297f
dot/tools.sh
@@ -20,6 +20,11 @@ install() {
20
"${DOT_TOOLS_PATH}/${1}.sh" "install"
21
}
22
23
+whoami() {
24
+ assert "$1"
25
+ "${DOT_TOOLS_PATH}/${1}.sh" "whoami"
26
+}
27
+
28
ls() {
29
count=$(find "${DOT_TOOLS_PATH}" -name "*.sh" | wc -l)
30
if [ $count -eq 0 ]; then return; fi
rc/tools.sh
@@ -6,7 +6,11 @@ dot_tools_info() {
6
7
dot_tools_install() {
8
"${DOT_DOT_PATH}/tools.sh" "install" "$1"
9
-}
10
11
+dot_tools_whoami() {
12
+ "${DOT_DOT_PATH}/tools.sh" "whoami" "$1"
13
14
15
dot_tools_init() {
16
for file in ${DOT_TOOLS_PATH}/*_init; do
0 commit comments