Skip to main content

Posts

Showing posts from April, 2018

Google Drive - Syncing multiple accounts to one computer

Syncing multiple accounts to one computer with Google Drive I use Google Drive with multiple Google accounts, my work account and my personal account. And I'd really like to be able to sync my Google Drive for each of those accounts to the same computer. Unfortunately, the Google Drive client software only supports syncing one account :( But here's a solution: (This at least works in OS X, I'll leave it to someone else to figure it out on other operating systems) Short version: Setup multiple user-accounts on your computer, setup Google Drive client software under each user-account, syncing with a different Google account from each one. Share the folders with your main account. As long as you keep the other user-accounts logged in, Google Drive will keep syncing for all the accounts you've set up. Details: 1. Install Google Drive https://tools.google.com/dlpage/drive?pli=1#eula 2. Add another user account on your system http://docs.info.apple.com/article.html?path=...

[reverse-i-search] Commands For Manipulating

accept-line (Newline or Return) Accept the line regardless of where the cursor is. If this line is non-empty, add it to the history list according to the setting of the HISTCONTROL and HISTIGNORE variables. If this line is a modified history line, then restore the history line to its original state. previous-history (C-p) Move ‘back’ through the history list, fetching the previous command. next-history (C-n) Move ‘forward’ through the history list, fetching the next command. beginning-of-history (M-<) Move to the first line in the history. end-of-history (M->) Move to the end of the input history, i.e., the line currently being entered. reverse-search-history (C-r) Search backward starting at the current line and moving ‘up’ through the history as necessary. This is an incremental search. forward-search-history (C-s) Search forward starting at the current line and moving ‘down’ through the history as necessary. This...