Lets say the folder structure is like so:
/home/
--user1/asdf
--user2/asdf1234
--user3/asdf325234
--cool/asdf
How could I change to asdf1234 without specifying the user? For example:
cd /home/*/asdf1234
How can I use "not" in bash? For example, lets say I want to go to /home/cool but use not capability:
cd /home/!user*/asdf is this possible?
Are these bash tricks possible?
*wildcard. Not in bash may look like!or^; check outman bashand search for those. Last, please make an effort to write better titles to your future questions.