Skip to content

Instantly share code, notes, and snippets.

@nicolashohm
Last active November 4, 2015 20:56
Show Gist options
  • Save nicolashohm/75b7a3a42202f9f861fa to your computer and use it in GitHub Desktop.
Save nicolashohm/75b7a3a42202f9f861fa to your computer and use it in GitHub Desktop.
Copy all lines from test not starting with "a" to withoutA
$ cat test
sdf
asdf
sdf
ert
aert
fgh
$ grep -v '^a' test > withoutA
$ cat withoutA
sdf
sdf
ert
fgh
$
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment