Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 953bf73

Browse files
committed
Remove useless shebangs and execute bits from source files
1 parent db23e4c commit 953bf73

27 files changed

+0
-54
lines changed

userland/utilities/basename.py

100755100644
Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#!/usr/bin/python3
2-
31
from pathlib import PurePath
42

53
from .. import core

userland/utilities/cat.py

100755100644
Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#!/usr/bin/python3
2-
31
import itertools
42
import sys
53
from io import BufferedReader

userland/utilities/clear.py

100755100644
Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#!/usr/bin/python3
2-
31
from .. import core
42

53
# clear(1), roughly modelled off the ncurses implementation.

userland/utilities/dirname.py

100755100644
Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#!/usr/bin/python3
2-
31
from pathlib import PurePath
42

53
from .. import core

userland/utilities/echo.py

100755100644
Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#!/usr/bin/python3
2-
31
import codecs
42
import re
53
from optparse import OptionParser, BadOptionError, AmbiguousOptionError

userland/utilities/factor.py

100755100644
Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#!/usr/bin/python3
2-
31
import math
42
import sys
53
from typing import Generator, Iterable

userland/utilities/false.py

100755100644
Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#!/usr/bin/python3
2-
31
import os
42
import sys
53

userland/utilities/groups.py

100755100644
Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#!/usr/bin/python3
2-
31
import grp
42
import pwd
53
import os

userland/utilities/hostid.py

100755100644
Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#!/usr/bin/python3
2-
31
from .. import core
42

53
parser = core.create_parser(

userland/utilities/id.py

100755100644
Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#!/usr/bin/python3
2-
31
import grp
42
import pwd
53
import os

0 commit comments

Comments
 (0)