Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7973887
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T08:13:41+00:00 2026-06-04T08:13:41+00:00

I have a common use case that I’d like to write a function for:

  • 0

I have a common use case that I’d like to write a function for: I often want to cd to some directory relative to some file.

My current workflow looks like this:

$ gem which rspec/core | xargs echo -n | pbcopy
$ cd *paste and delete end until direcory looks right*


note: gem which rspec/core prints something like “/Users/joshcheek/.rvm/gems/ruby-1.9.3-p125/gems/rspec-core-2.10.0/lib/rspec/core.rb”

I’d like it to look like this:

$ gem which rspec/core | 2dir 3

Which will cd me into “/Users/joshcheek/.rvm/gems/ruby-1.9.3-p125/gems/rspec-core-2.10.0” (passing the argument “3” tells it to remove “lib/rspec/core.rb” from the end)

This is the best I’ve gotten so far:

2dir() {
  read dir
  for i in $(seq 1 $1)
    do
      dir="${dir%/*}"
  done
  cd "$dir"
}

But the cd changes the function’s directory, not mine. I’ve tried swapping it with an alias, but can’t figure out how to make anonymous functions or pass the argument.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T08:13:42+00:00Added an answer on June 4, 2026 at 8:13 am

    I’d use:

    2dir()
    {
        name=${2:?'Usage: 2dir count path'}
        count=$1
        while [[ $count -gt 0 ]]; do name=$(dirname "$name"); ((count--)); done
        cd "$name"
    }
    

    and use it as:

    2dir 3 $(gem which rspec/core)
    

    This works where your pipeline can’t. The cd in the pipe process affects that (sub-)shell, but cannot affect the current directory of the parent process. This function can be made to work.

    And you can use your dir="${dir%/*}" in place of my dirname if you prefer, except that you’ll end up in your home directory instead of the current directory (or root directory, depending on whether you gave a relative or absolute path name) if you specify 10 when there are only 5 components.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Im looking to have a common parent function like so void main (param 1,
In Zend Framework, I have a common use case where I need to propagate
I have a fairly straightforward and common use case. A panel, in which resides
I have what I think is a rather common use case for NHibernate. I
Can I use shared memory on Windows in order to have a common memory
I have a commons-logging configuration question. I want it to use SimpleLog (instead of
I have common functionality that I need to access from all screens of my
I have a common comms library that i have written to communicate with our
I have a common resource, which I want 1 and only 1 instance of
I have a common problem that I never know how to solve with CSS:

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.