Skip to content

Daily IT Help

My daily IT journal

Primary Navigation Menu

Menu
  • About me

General (Page 25)

git ignore certificate error

2018-12-12
By: itdoctor
On: December 12, 2018
In: General

git clone https://github.com/commx/python-rrdtool.git -c http.sslVerify=falseRead More →

bash – check if a string in a variable

2018-12-11
By: itdoctor
On: December 11, 2018
In: General

1
 

if you use#! /bin/zsh $MYVAR=”Hello world” if [[ $MYVAR == *”hello”*]] thenecho “FOUND”fi If we don’t use #! /bin/zsh $MYVAR=”Hello world”if [[ $MYVAR == *”hello”*]]; thenecho “FOUND”fiRead More →

Virtualbox: can’t remove / attach new hard disk

2018-12-09
By: itdoctor
On: December 9, 2018
In: General, Linux