summaryrefslogtreecommitdiff
path: root/ls
blob: fd6230c351982f5aded458da0bcbc2bf0e2c8758 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/bin/bash
# ls (anything in) your homedir (eq. ls $HOME/$1)

if [[ $1 == *..* ]]; then
	echo "No .." >&2
	exit 1
fi

ls "$HOME/$1"