/psu

Python shell-like utilities.

Primary LanguagePythonMIT LicenseMIT

psu

Python shell-liked utilities.

from psu import mkdir, ls, cd, touch

path = './test'
mkdir(path)
cd(path)
touch('somefile')
ls('.')