Skip to content

Commit

Permalink
Add licence removal script
Browse files Browse the repository at this point in the history
  • Loading branch information
fwsGonzo committed Jul 22, 2019
1 parent 3658486 commit f403d20
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
27 changes: 27 additions & 0 deletions remove.txt
@@ -0,0 +1,27 @@
// This file is a part of the IncludeOS unikernel - www.includeos.org
//
// Copyright 2015-2016 Oslo and Akershus University College of Applied Sciences
// Copyright 2015-2017 Oslo and Akershus University College of Applied Sciences
// Copyright 2015-2018 Oslo and Akershus University College of Applied Sciences
// Copyright 2016-2017 Oslo and Akershus University College of Applied Sciences
// Copyright 2016-2018 Oslo and Akershus University College of Applied Sciences
// Copyright 2018-2019 Oslo and Akershus University College of Applied Sciences
// Copyright 2015 Oslo and Akershus University College of Applied Sciences
// Copyright 2016 Oslo and Akershus University College of Applied Sciences
// Copyright 2017 Oslo and Akershus University College of Applied Sciences
// Copyright 2018 Oslo and Akershus University College of Applied Sciences
// and Alfred Bratterud
// Copyright 2017 IncludeOS AS, Oslo, Norway
// Copyright 2018 IncludeOS AS, Oslo, Norway
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
17 changes: 17 additions & 0 deletions remove_licence.py
@@ -0,0 +1,17 @@
#!/usr/bin/python
import sys
outfile = sys.argv[1]
print(outfile + " is being processed...")

list = ()
with open("remove.txt", "r") as f:
list = f.readlines()


with open(outfile, "r+") as f:
d = f.readlines()
f.seek(0)
for i in d:
if i not in list:
f.write(i)
f.truncate()

0 comments on commit f403d20

Please sign in to comment.