@@ -0,0 +1,5 @@
+# Make a directory and go into it
+function mkcd() { mkdir -p "$1" && cd "$1" }
+# Put file contents into Windows clipboard
+# Useful for WSL
+function clip() { clip.exe < "$1" }