Skip to content

Latest commit

 

History

History
40 lines (34 loc) · 601 Bytes

File metadata and controls

40 lines (34 loc) · 601 Bytes

FileManager

Console file manager, written on python

Note: Python3 only. Correct work on python 2 doesn't guaranteed

Usage:

To start, just run:

python3 main.py

Supported commands with syntax and examples:

  • cd [dir_name/absolute_path]
cd
cd my_directory
cd /usr/bin
  • mkdir directory_name
mkdir new_directory
  • touch file_name
touch new_file.txt
  • cat file_name
cat new_file.txt
  • ls
  • pwd
ls
pwd

Note: all commands are similar to the Unix ones, but no options are available, unless otherwise specified.