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.
18 lines
540 B
Bash
18 lines
540 B
Bash
#!/bin/bash
|
|
########################################################################
|
|
# 2014-09-07 Lukas Bestle mail@lukasbestle.com
|
|
########################################################################
|
|
# Lists all known project directories.
|
|
#
|
|
# Usage: project_list
|
|
########################################################################
|
|
|
|
# Check if the ~/.project file exists
|
|
if [[ ! -f "$HOME/.projects" ]]; then
|
|
echo -e "\033[31mThere is no \033[34m~/.projects\033[31m file yet.\033[0m" >&2
|
|
exit 1
|
|
fi
|
|
|
|
cat "$HOME/.projects"
|
|
exit $?
|