2022/day 5 init

This commit is contained in:
2022-12-08 12:45:04 +01:00
parent ab73311d6b
commit 64ad068ec8
8 changed files with 863 additions and 0 deletions

8
env.sh
View File

@@ -5,3 +5,11 @@ export LD_LIBRARY_PATH=../lib
# usage:
# TIME command < inputfile
alias TIME='\time -f "\ttime: %E real, %U user, %S sys\n\tcontext-switch:\t%c+%w, page-faults: %F+%R\n"'
# Get (move) ~/Downloads/Day* file to README.html in current directory, then
# run "make org"
org() {
mv ~/Downloads/Day* README.html
make org
rm README.html
}