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
-2
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
-2
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
-2
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
-2
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
-2
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
-2
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
-2
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
-2
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
-2
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
-2
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/logname.py

100755100644
-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#!/usr/bin/python3
2-
31
import os
42

53
from .. import core

userland/utilities/nologin.py

100755100644
-2
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/nproc.py

100755100644
-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#!/usr/bin/python3
2-
31
import os
42

53

userland/utilities/printenv.py

100755100644
-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#!/usr/bin/python3
2-
31
import os
42

53
from .. import core

userland/utilities/pwd.py

100755100644
-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#!/usr/bin/python3
2-
31
import os
42

53
from .. import core

userland/utilities/readlink.py

100755100644
-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#!/usr/bin/python3
2-
31
import sys
42
from pathlib import Path
53
from typing import Callable

userland/utilities/realpath.py

100755100644
-2
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/reset.py

100755100644
-2
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/sleep.py

100755100644
-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#!/usr/bin/python3
2-
31
import time
42
from decimal import Decimal
53

userland/utilities/sum.py

100755100644
-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#!/usr/bin/python3
2-
31
import sys
42

53
from .. import core

userland/utilities/sync.py

100755100644
-2
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/true.py

100755100644
-2
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/truncate.py

100755100644
-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#!/usr/bin/python3
2-
31
import sys
42
from pathlib import Path
53
from typing import Callable

userland/utilities/tty.py

100755100644
-2
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/uname.py

100755100644
-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#!/usr/bin/python3
2-
31
import os
42

53
from .. import core

userland/utilities/whoami.py

100755100644
-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#!/usr/bin/python3
2-
31
import os
42

53
from .. import core

userland/utilities/yes.py

100755100644
-2
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(

0 commit comments

Comments
 (0)