Skip to content

Instantly share code, notes, and snippets.

View ncase1989's full-sized avatar

Nate ncase1989

  • Lexmark Enterprise Software
View GitHub Profile
@ncase1989
ncase1989 / 0_reuse_code.js
Created February 6, 2017 00:27
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@ncase1989
ncase1989 / 0_Bash_Scripting_Arithmetics
Last active January 23, 2018 22:30
Calculate value of expression
_
Bash Scripting Parameter Expansion
@ncase1989
ncase1989 / 0_Bash_Scripting_Input_Output_Redirection
Last active January 23, 2018 22:30
Input/output redriection
_
@ncase1989
ncase1989 / 0_Bash Scripting Tests
Last active January 23, 2018 22:30
Bash Scripting Tests
Bash Scripting Tests
(( i = 0 ))
while (( i < 10 )); do
echo "$i"
(( i += 1))
done
@ncase1989
ncase1989 / 0_Bash_scripting_strings
Last active January 23, 2018 22:29
Bash Scripting Strings
_