]> git.proxmox.com Git - mirror_edk2.git/blobdiff - AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/lll.py
edk2: Remove AppPkg, StdLib, StdLibPrivateInternalFiles
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.2 / Tools / scripts / lll.py
diff --git a/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/lll.py b/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/lll.py
deleted file mode 100644 (file)
index e95e1fb..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-#! /usr/bin/env python\r
-\r
-# Find symbolic links and show where they point to.\r
-# Arguments are directories to search; default is current directory.\r
-# No recursion.\r
-# (This is a totally different program from "findsymlinks.py"!)\r
-\r
-import sys, os\r
-\r
-def lll(dirname):\r
-    for name in os.listdir(dirname):\r
-        if name not in (os.curdir, os.pardir):\r
-            full = os.path.join(dirname, name)\r
-            if os.path.islink(full):\r
-                print name, '->', os.readlink(full)\r
-def main():\r
-    args = sys.argv[1:]\r
-    if not args: args = [os.curdir]\r
-    first = 1\r
-    for arg in args:\r
-        if len(args) > 1:\r
-            if not first: print\r
-            first = 0\r
-            print arg + ':'\r
-    lll(arg)\r
-\r
-if __name__ == '__main__':\r
-    main()\r