Skip to content

Instantly share code, notes, and snippets.

View lamby's full-sized avatar

Chris Lamb lamby

View GitHub Profile
[Service]
SystemCallFilter=~fsync sync syncfs fdatasync msync sync_file_range
SystemCallErrorNumber=0
@lamby
lamby / gitsh
Created February 11, 2014 18:51 — forked from hmarr/gitsh
#!/bin/sh
echo -n "gitsh% "
while read line; do
if [ "$line" = ":exit" ]; then
exit
fi
sh -c "git $line"
echo -n "gitsh% "