9 lines
81 B
Bash
9 lines
81 B
Bash
#!/bin/bash
|
|
|
|
# Cd
|
|
alias cdup='cd ..'
|
|
|
|
# Ls
|
|
alias ll='ls -lh'
|
|
alias lla='ls -lha'
|