DEV Community

Discussion on: Bash: How To Teleport In The Terminal

Collapse
 
johnbetong profile image
John Betong

My favourite is the humble *

instead of:
cd /var/www/this-is-a-test-to-see-if-it-works.tk
pwd
$ /var/www/this-is-a-test-to-see-if-it-works.tk

try this instead:
cd /var/www/this-*
pwd
$ /var/www/this-is-a-test-to-see-if-it-works.tk