Loads of solutions exist, but for changing the system default, alias is not the way to go.
$ update-alternatives --list python update-alternatives: error: no alternatives for python
Example:
zsh-5.7.1-1-x86_64.pkg.tar.xz
| #!/bin/bash | |
| # Sometimes you need to move your existing git repository | |
| # to a new remote repository (/new remote origin). | |
| # Here are a simple and quick steps that does exactly this. | |
| # | |
| # Let's assume we call "old repo" the repository you wish | |
| # to move, and "new repo" the one you wish to move to. | |
| # | |
| ### Step 1. Make sure you have a local copy of all "old repo" | |
| ### branches and tags. |
| ### Shortcut — Action | |
| - [x] `CTRL + A` — Move to the beginning of the line | |
| - [x] `CTRL + E` — Move to the end of the line | |
| - [ ] `CTRL + [left arrow]` — Move one word backward (on some systems this is ALT + B) | |
| - [ ] `CTRL + [right arrow]` — Move one word forward (on some systems this is ALT + F) | |
| - [ ] `CTRL + U` — (bash) Clear the characters on the line before the current cursor position | |
| - [ ] `CTRL + U` —(zsh) If you're using the zsh, this will clear the entire line | |
| - [ ] `CTRL + K` — Clear the characters on the line after the current cursor position | |
| - [ ] `ESC + [backspace]` — Delete the word in front of the cursor |
First, Create a folder inside of lib called seeds
Put your CSV file example.csv into the lib/seeds folder. In the example below, the file is called real_estate_transactions.csv
Make sure you've created a resource with the appropriate columns to match your seed data. The names don't have to match up.
| //server/controllers/_ticket-control.js | |
| 'use strict'; | |
| const Tickets = require('../models/tickets'); | |
| //=================== | |
| // Create Tickets Route | |
| //=================== | |
| exports.createTicket = function(req, res, next) { |
| // Desired unique index: | |
| // db.collection.ensureIndex({ firstField: 1, secondField: 1 }, { unique: true}) | |
| db.collection.aggregate([ | |
| { $group: { | |
| _id: { firstField: "$firstField", secondField: "$secondField" }, | |
| uniqueIds: { $addToSet: "$_id" }, | |
| count: { $sum: 1 } | |
| }}, | |
| { $match: { |