Executive Chimp
executivechimp@discuss.tchncs.de
Joined
0 posts • 8 comments
GNU pterry
- Behind the Bastards
- Last Podcast on the Left
- Infinite Monkey Cage
- We Can Be Weirdos
- The Adam Buxton Podcast
- Betwixt the Sheets
I haven’t tried it but beans on toast with loads of cheese is a banger, so I can imagine it works.
Good article. Rather than aliasing `cd …/…" etc. I’ve got this function in my setup:
up () {
local x=''
for i in $(seq ${1:-1})
do
x="$x../"
done
cd $x
}
This lets me do up 4
to go up 4 directories.