I am sorry and aware this is the wrong community. However, I am unable to find Ask Programmer.

I wrote a small bash script, and I would like to share it on GitHub. However, to operate probably it requires dir with some files in user $HOME dir.

The only solutions came to my mind were, tar the directory BUT is this pragmatic solution?

you are viewing a single comment's thread
view the rest of the comments
[–] [S] 3 points 2 years ago* (1 child)

Correct me if I misunderstood, I will include Makefile, and when run make install it will execute install command?

  • source
  • parent
  • hideshow 2 child comments
  • [–] 2 points 2 years ago* (2 children)

    Correct.

    make install command will invoke install once for each file you need put in place.

    Make is just a tool that I like to use, you could even just add an install.sh script that sets up all the needed files.

  • source
  • parent
  • hideshow 4 child comments