-
-
Save vcavallo/6690701 to your computer and use it in GitHub Desktop.
CS function for bash profile - `cs ~/directory` does `cd` to ~/directory and then immediately does `ls` there (well, a fancy ls...).
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# CS function | |
function cs () { | |
cd $1; ls "-lahG" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment