Navigate and manage real filesystem
17 commands available
lsdirectory listing (list all files/folders on current dir)
ls -lals -lformatted listing with permissions and dates
ls -lls -laformatted listing including hidden files
ls -lacd dirchange directory to dir (real filesystem navigation)
cd /etccd..change to parent directory
cd..cdchange to home directory
cdpwdshow current directory path
pwdmkdir dircreate a directory in real filesystem
mkdir myprojectrm filedelete file from real filesystem
rm document.txtrm -f dirforce remove file (permanent deletion)
rm -f oldfile.txtrm -r dirrecursively delete directory and contents
rm -r myfoldercp file1 file2copy file1 to file2 in real filesystem
cp backup.txt backup2.txtmv file1 file2rename/move file1 to file2
mv oldname.txt newname.txttouch filecreate or update file timestamp
touch newfile.txtcat fileoutput contents of real file
cat /etc/hostnametail -f filefollow file changes in real time
tail -f /var/log/messagesfind . -namesearch for files in real filesystem
find . -name "*.txt"