-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.spirorc
35 lines (29 loc) · 1.22 KB
/
.spirorc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# .spirorc
# This file contains custom functions and aliases.
# To load these functions in your shell, add the following line to your .bashrc or .zshrc file:
# source ~/.spirorc
##############################################################
#### ___ _ _ _ _ ___ _____ ___ ___ _ _ ___ ####
#### | __| | | | \| |/ __|_ _|_ _/ _ \| \| / __| ####
#### | _|| |_| | .` | (__ | | | | (_) | .` \__ \ ####
#### |_| \___/|_|\_|\___| |_| |___\___/|_|\_|___/ ####
#### ####
##############################################################
mkcd() {
# Creates a directory and navigates into it
mkdir -p "$1" && cd "$1"
}
hsg() {
# Searches the command history for all provided keywords
history | grep "$*"
}
###################################################
#### _ _ ___ _ ___ ___ ___ ####
#### /_\ | | |_ _| /_\ / __| __/ __| ####
#### / _ \| |__ | | / _ \\__ \ _|\__ \ ####
#### /_/ \_\____|___/_/ \_\___/___|___/ ####
#### ####
###################################################
alias edzrc='vim .zshrc'
alias edsprc='vim .spirorc'
alias bla='echo bla'