this post was submitted on 05 May 2024
10 points (100.0% liked)

linux4noobs

1314 readers
9 users here now

linux4noobs


Noob Friendly, Expert Enabling

Whether you're a seasoned pro or the noobiest of noobs, you've found the right place for Linux support and information. With a dedication to supporting free and open source software, this community aims to ensure Linux fits your needs and works for you. From troubleshooting to tutorials, practical tips, news and more, all aspects of Linux are warmly welcomed. Join a community of like-minded enthusiasts and professionals driving Linux's ongoing evolution.


Seeking Support?

Community Rules

founded 1 year ago
MODERATORS
 

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
[–] [email protected] 4 points 5 months ago (5 children)

Look into the install command.

Often folks will include a makefile with an install target that places the various needed files in the correct locations.

[–] [email protected] 3 points 5 months ago* (last edited 5 months ago) (4 children)

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

[–] [email protected] 2 points 5 months ago* (last edited 5 months ago) (3 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.

[–] [email protected] 1 points 5 months ago
load more comments (2 replies)
load more comments (2 replies)
load more comments (2 replies)