/histsync

Cloud Bash History app using python and flask

Primary LanguagePythonMIT LicenseMIT

histsync

Cloud Bash History app using python and flask

The app is currently under heavy development

Using alpha version

To use an alpha version of the app, try this:

  1. Go to http://histsync.herokuapp.com/
  2. Login with github
  3. Click "My Profile" in the navbar
  4. Click "Show API key"
  5. Install bash-preexec
  6. Install histsync-client.py (put it into your ~)
  7. Add this to your .bashrc / .bash_profile:
preexec() {
    echo "just typed $1";
    ~/histsync-client.py --api_key <your_api_key> --user <your_username> "$1" >>~/histsync.log 2>&1;
}