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
#!/usr/bin/env python | |
""" | |
Starts vim with several possible input formats. | |
Examples: | |
v foo/bar/baz.c # full correct path | |
v baz.c # finds baz.c and edits the first | |
v baz.c:123 # same but start at line 123 | |
v baz.c +123 # same as above |
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
FROM ubuntu:14.04 | |
MAINTAINER Jan Issac <[email protected]> | |
# Use noninteractive debconf frontend | |
ENV DEBIAN_FRONTEND noninteractive | |
# Update | |
Run apt-get update |