Resources

(needs SSO) University of Bristol ACRC documentation

Research Data Storage Facility (RDSF)

Introduction to the Command Line Interface

Estimating HPC Resources



Python script example

hello_loop.py

import time

for i in range(1, 31):
    print(f"Hello {i}")
    time.sleep(2)