You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
projectr/bin/site_list

18 lines
584 B
Bash

#!/bin/bash
########################################################################
# 2014-09-07 Lukas Bestle mail@lukasbestle.com
########################################################################
# Lists all known sites.
#
# Usage: project_list
########################################################################
# Check if the sites directory exists
if [[ ! -d "$HOME/web/sites" ]]; then
echo -e "\033[31mThere is no \033[34m~/web/sites\033[31m directory yet.\033[0m" >&2
exit 1
fi
ls "$HOME/web/sites" | cat # Make sure every item is printed on a new line
exit $?