This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Author: Sharad Kumar Chhetri | |
# Date : 27-April-2015 | |
# Description : The backup script will complete the backup in 2 phases - | |
# 1. First Phase: Taking backup of Keyspace SCHEMA | |
# 2. Second Phase: Taking snapshot of keyspaces | |
# | |
## In below given variables - require information to be feed by system admin## |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This is sourced from the video -> https://www.youtube.com/watch?v=nZ1DMMsyVyI&t=2s | |
// Template Literals | |
const firstName = 'John'; | |
const lastName = 'Doe'; | |
console.log(`Hello: ${firstName} ${lastName}`); // Hello: John Doe | |
// Object Destructuring | |
const person = { |