Last active
March 1, 2025 22:52
-
-
Save skwid138/15041e4c3d4992420ae93b25cfadb828 to your computer and use it in GitHub Desktop.
Some handy aliases
This file contains hidden or 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
#!/bin/bash | |
## List all files and exclude directories in current directory (ls -p adds trailing slash to directories | ls -x displays mul$ | |
alias lsf="ls -apx | grep -v /" | |
## List only directories in current path | |
alias lsd="ls -d -1 */ | lolcat" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment