This file contains hidden or 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
all: | |
@echo MAKEFLAGS = $(MAKEFLAGS) |
This file contains hidden or 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
#include "server.hpp" | |
#include <iostream> | |
#include <fstream> | |
#include <sstream> | |
using std::cout; | |
using std::cerr; | |
using std::cin; | |
using std::endl; | |
using std::fstream; |
This file contains hidden or 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 | |
refname="$1" | |
oldrev="$2" | |
newrev="$3" | |
PATH=~/bin:$PATH | |
if [ -z "$GIT_DIR" ]; then | |
echo "Don't run this script from the command line." >&2 |
This file contains hidden or 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
sudo adduser --disabled-password backuper | |
sudo su backuper | |
cd ~/.ssh | |
ssh-keygen -t dsa | |
# entrée pour ne pas saisir de passphrase | |
# entrée pour garder le nom par défaut, très satisfaisant |
NewerOlder