12:13:22 AM
Thursday
Sep 09
Su M Tu W Th F Sa
567891011
12131415161718
19202122232425
262728293012
3456789

Play My Typing Game

View Some of My Artwork

ls in detail
-a do not hide files starting with a dot
-F show the type of the file with one of these trailing type designators /*@%=| /=directory *=executable @=symbolic link %=whiteout ==socket |=FIFO
-l long listing
-L show information about the linked file, rather than the symbolic link itself
-Q quote names
-r reverse sort order
-R recurse through subdirectories
-S sort by file size
-1 short format but only one file per line


PROBLEM: You want to see only hidden files, those which begin with a dot. ls -a .* doesn't do what you think it will.

SOLUTION 1: Use ls -d
ls -d .*
ls -d .b*
ls -d .[!.]*

SOLUTION 2: construct your wildcard so that . and .. don't match
grep -l 'PATH' ~/.[!.]*
/home/jp/.bash_history
/home/jp/.bash_profile



You can use ? in place of a single character wildcard.
ls -l *.t?t
/home/af/somefile.txt
/home/af/somefile.tat

but will not show
/home/af/somefile.toot

however, if you wanted to, perhaps you'd use
ls -l *.t*t


Read Previous:
Introduction to the shell
Read Next:
Writing Output
Table of Contents


Give a listen to my music...
My Best Recordings
How my services and skills can help you:
  • Global (via Email/Skype/AIM(ichat)/Yahoo)
    • Web Development Consulting
    • Custom Web App Development (PHP/MySQL/jQuery/CSS) Cross-Browser & OS
    • Cellphone App Development (Android/MobileWeb)
    • Music Lessons & Education for Beginner Guitar, Piano, Bass, which transfers over to many other instruments I am comfortable playing but not yet at teaching.
    • Music - Soundtrack Composition & Voice Work
  • Local
    • Most all the above, but also:
      • Music Performance (Harp, Voice, Guitar, Piano, Bass, Latin Percussion)
      • Recording Live Music Audio
      • Video Streaming live music and other live events anywhere that can provide wifi
      • Training Video Streaming to your venue's trusted soundperson
Skills:
  • Global (via Email/Skype/AIM(ichat)/Yahoo)
    • Web Development Consulting
    • Custom Web App Development (PHP/MySQL/jQuery/CSS) Cross-Browser & OS
    • Cellphone App Development (Android/MobileWeb)
    • Music Lessons & Education for Beginner Guitar, Piano, Bass, which transfers over to many other instruments I am comfortable playing but not yet at teaching.
    • Music - Soundtrack Composition & Voice Work
  • Local, Most all the above, but also:
    • Music Performance (Harp, Voice, Guitar, Piano, Bass, Latin Percussion)
    • Being your venue's soundman
    • Video Streaming live music and other live events anywhere that can provide wifi
    • Training Video Streaming to your venue's trusted soundperson