Avatar

Executive Chimp

executivechimp@discuss.tchncs.de
Joined
0 posts • 8 comments
Direct message

The bottom is zero and they’re still not there somehow.

permalink
report
parent
reply

GNU pterry

permalink
report
reply
  • Behind the Bastards
  • Last Podcast on the Left
  • Infinite Monkey Cage
  • We Can Be Weirdos
  • The Adam Buxton Podcast
  • Betwixt the Sheets
permalink
report
reply

…but isn’t

permalink
report
parent
reply

I haven’t tried it but beans on toast with loads of cheese is a banger, so I can imagine it works.

permalink
report
reply

I’ve tried things like that before but never got on with them. I found when I had many projects with similar directory structures it was easy to end up in the wrong place and took more thought to get to the right place than just cding

permalink
report
parent
reply

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.

permalink
report
reply