[READ-ONLY] Mirror of https://github.com/probablykasper/my-bash-scripts. My personal bash scripts
cli
0

Configure Feed

Select the types of activity you want to include in your feed.

Updated welp to work in any directory

Kasper (Apr 3, 2019, 8:40 PM +0200) 5c6fa24b 3bbd0090

+4 -2
+4 -2
welp
··· 1 1 #! /bin/bash 2 2 3 - DIR="$(cd ~/bin; pwd)" 3 + # get the dir that the file is in 4 + DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" 5 + 4 6 echo These scripts are installed in $DIR: 5 - ls -1 ~/bin 7 + ls -1 $DIR