it:ad:apple:imac:terminal

IT:Apple:iMac:Terminal

PWD stands for Present Working Directory. User's home directory is tilda.

Use Spotlight (%SPACE) to launch Terminal

//Change to home directory:
cd  

//list files in current directory that start with mobile:
ls mobile*

//use chmod to make files read/write: 777 is a bit extreme but gets the job done.
chmod 777

//rename (move) a file
mv index-release.html index.html

//create dir
//mkdir -p ../whatever

//remove a file or folder
rm -R -d /temp   //recursive removal of directory
rm -f /temp     //quite remove of files
  • /home/skysigal/public_html/data/pages/it/ad/apple/imac/terminal.txt
  • Last modified: 2023/11/04 03:37
  • by 127.0.0.1