This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env python3 | |
# lab04_paraprinting.py | |
# oldkingcone | |
# Guns up, lets do this leeroy. | |
# LeeroyJenkins, circa 2005 | |
import datetime | |
import os | |
import webbrowser |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import sys | |
import grp | |
import pwd | |
''' | |
There are 2 functions calling and doing the same thing. The accurate scan seems to preform much better with large file systems. | |
automation for ls /* in the event you want all output logged and already handled for you. | |
''' | |
os.system('clear') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/tmp/env perl | |
use strict; | |
use 5.010; | |
my $user = $ENV{USER}; | |
my $logname = $ENV{LOGNAME}; | |
my $file_directory = "./ranby.txt"; | |
# my $second_log = "./second.txt"; | |
my $filename = "ranby.txt"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import sys | |
import grp | |
import pwd | |
from datetime import datetime as dt | |
os.system('clear') | |
os.chdir('/home') | |
os.system('pwd') | |
path2 = ['/', '/home/*', '/bin', '/usr', '/var', '/tmp', '/lib', '/lib64', '/etc', '/sys', '/dev', '/media', '/mnt', '/srv', '/sbin', '/etc'] |
NewerOlder