Tagged Questions
0
votes
1answer
62 views
cd and ls wont work in terminal mac.
Can anybody explain what is wrong with my terminal:
$ echo $PATH
=/usr/local/bin
$ ls
-bash: ls: command not found
$ cd
-bash: find: command not found
Why won't these commands work? Help? ...
1
vote
3answers
181 views
How do I `cd` and then* `ls` automatically in linux?
I have found myself keep doing cd some_dir quickly followed by ls for quite some time now, and have been trying to write a bash alias to let me do this, such as:
alas cd="cd $@; ls";
Problem with ...
0
votes
2answers
15 views
Change to xth directory terminal
Is there a way in a unix shell (specifically Ubuntu) to change directory into the xth directory that was printed from the ls command?
I know you can sort a directory in multiple ways, but using the ...
2
votes
4answers
623 views
Alternatives to cd/ls for command line navigation?
I generally work a fair amount from the command line in order to launch vim, git, ssh and so on. However, I find the Finder's columnar view more natural for browsing through my files. Unfortunately, ...