14 lines
384 B
Bash
14 lines
384 B
Bash
#!/bin/bash
|
|
|
|
# Gives a personalised greeting
|
|
# Adds configuration options for SQLite
|
|
# Creates run aliases
|
|
# Author: Matt Rudge
|
|
|
|
echo "Setting the greeting"
|
|
sed -i "s/USER_NAME/$GITPOD_GIT_USER_NAME/g" ${GITPOD_REPO_ROOT}/README.md
|
|
echo "Creating .sqliterc file"
|
|
echo ".headers on" > ~/.sqliterc
|
|
echo ".mode column" >> ~/.sqliterc
|
|
echo "Your workspace is ready to use. Happy coding!"
|