Programming Steps
Step-By-Step Programming For Beginners
Monday, December 12, 2016
Mac: Remove (non-empty) folders
.
Console Command:
sudo rm -r folderName
Read further:
http://www.macworld.com/article/2082021/master-the-command-line-deleting-files-and-folders.html
Mac: start TextEditor from the command line
.
Console Command:
$ open -a TextEdit readme.txt
Mac: Display a tree-like structural view of any directory
.
Console Command:
ls -R | grep ":" | sed -e 's/://' -e 's/[^-][^\/]*\//--/g' -e 's/^/ /' -e 's/-/|/'
‹
›
Home
View web version