[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: cvsfiles.py
File is not writable. Editing disabled.
#! /usr/bin/env python """Print a list of files that are mentioned in CVS directories. Usage: cvsfiles.py [-n file] [directory] ... If the '-n file' option is given, only files under CVS that are newer than the given file are printed; by default, all files under CVS are printed. As a special case, if a file does not exist, it is always printed. """ import os import sys import stat import getopt cutofftime = 0 def main(): try: opts, args = getopt.getopt(sys.argv[1:], "n:") except getopt.error, msg: print msg print __doc__, return 1 global cutofftime newerfile = None for o, a in opts: if o == '-n': cutofftime = getmtime(a) if args: for arg in args: process(arg) else: process(".") def process(dir): cvsdir = 0 subdirs = [] names = os.listdir(dir) for name in names: fullname = os.path.join(dir, name) if name == "CVS": cvsdir = fullname else: if os.path.isdir(fullname): if not os.path.islink(fullname): subdirs.append(fullname) if cvsdir: entries = os.path.join(cvsdir, "Entries") for e in open(entries).readlines(): words = e.split('/') if words[0] == '' and words[1:]: name = words[1] fullname = os.path.join(dir, name) if cutofftime and getmtime(fullname) <= cutofftime: pass else: print fullname for sub in subdirs: process(sub) def getmtime(filename): try: st = os.stat(filename) except os.error: return 0 return st[stat.ST_MTIME] if __name__ == '__main__': main()
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: server05.hostinghome.co.in
Server IP: 192.168.74.40
PHP Version: 7.4.33
Server Software: Apache
System: Linux server05.hostinghome.co.in 3.10.0-962.3.2.lve1.5.81.el7.x86_64 #1 SMP Wed May 31 10:36:47 UTC 2023 x86_64
HDD Total: 1.95 TB
HDD Free: 700.22 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Disabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes
gcc:
Yes
pkexec:
No
git:
Yes
User Info
Username: itsweb
User ID (UID): 1619
Group ID (GID): 1621
Script Owner UID: 1619
Current Dir Owner: N/A