Skip to content

Instantly share code, notes, and snippets.

View ansgar-forestier's full-sized avatar

Ansgar Forestier ansgar-forestier

  • Saint Petersburg, Russia
View GitHub Profile
@ansgar-forestier
ansgar-forestier / change_host_name.sh
Last active April 14, 2023 21:31
Ubuntu change hostname script
if [ ! -n "$1" ]
then
echo 'Missed argument : hostname'
exit 1
fi
if [ "$(id -u)" != "0" ]; then
echo "Sorry, you are not root."
exit 1
fi
@ansgar-forestier
ansgar-forestier / .vimrc
Last active August 29, 2015 14:04
My vimrc
set tabstop=4
set shiftwidth=4
set smarttab
set et
set showmatch
set hlsearch
set incsearch
set ignorecase