LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 04-20-2008, 03:29 PM   #1
SqdnGuns
Senior Member
 
Registered: Aug 2005
Location: Pensacola, FL
Distribution: Slackware64® Current & Arch
Posts: 1,092

Rep: Reputation: 174Reputation: 174
HJSplit


This little application is used to split and join files of any type and size.

You can get HJSplit here:

Code:
http://www.freebyte.com/hjsplit/#linux
It will require the Kylix library which you can get here:

Code:
http://www.freebyte.com/linux/libraries/
You will need to add this to you .bashrc and/or .bash_profile

export LD_LIBRARY_PATH=/usr/lib/kylix3
 
Old 04-20-2008, 04:09 PM   #2
jay73
LQ Guru
 
Registered: Nov 2006
Location: Belgium
Distribution: Ubuntu 11.04, Debian testing
Posts: 5,019

Rep: Reputation: 133Reputation: 133
I use the Java version, runs fine without editing your path as long as you have a JRE installed. Fedora appears to be offering a command line version of it (lxrun or something like that).
 
Old 04-20-2008, 04:13 PM   #3
SqdnGuns
Senior Member
 
Registered: Aug 2005
Location: Pensacola, FL
Distribution: Slackware64® Current & Arch
Posts: 1,092

Original Poster
Rep: Reputation: 174Reputation: 174
Quote:
Originally Posted by jay73 View Post
I use the Java version, runs fine without editing your path as long as you have a JRE installed. Fedora appears to be offering a command line version of it (lxrun or something like that).
NIce, I failed to scroll down lower to see the Java variant.....DOH!! Thanks for pointing it out.
 
Old 04-20-2008, 04:19 PM   #4
tredegar
LQ 5k Club
 
Registered: May 2003
Location: London, UK
Distribution: Fedora38
Posts: 6,147

Rep: Reputation: 435Reputation: 435Reputation: 435Reputation: 435Reputation: 435
The last time I encountered a file like this ( "Please join with HJSplit"), albeit some time ago, I didn't need anything.
Linux already had the tool. No need for Java, downloads or anything
Code:
cat file1 file2 file3 >> resultfile
Done
 
Old 04-20-2008, 04:27 PM   #5
SqdnGuns
Senior Member
 
Registered: Aug 2005
Location: Pensacola, FL
Distribution: Slackware64® Current & Arch
Posts: 1,092

Original Poster
Rep: Reputation: 174Reputation: 174
Quote:
Originally Posted by tredegar View Post
The last time I encountered a file like this ( "Please join with HJSplit"), albeit some time ago, I didn't need anything.
Linux already had the tool. No need for Java, downloads or anything
Code:
cat file1 file2 file3 >> resultfile
Done
Great, learning something new all the time.
 
Old 04-20-2008, 05:15 PM   #6
jay73
LQ Guru
 
Registered: Nov 2006
Location: Belgium
Distribution: Ubuntu 11.04, Debian testing
Posts: 5,019

Rep: Reputation: 133Reputation: 133
Yeah, cat is really useful. Sometimes I get files that are split up into rar archives. Every so often unrar will fail to extract them (because of incomplete multi-part support) but cat has always provided a way out. Still, I like HJSplit, clicking a few buttons is still a lot faster than typing a slew of file names into a terminal.

Last edited by jay73; 04-20-2008 at 05:16 PM.
 
Old 04-20-2008, 08:21 PM   #7
2-tone-joe
Member
 
Registered: Dec 2007
Posts: 31

Rep: Reputation: 15
and use split to split files cat is the best for ascii and binary. Most apps likely use its source.
 
Old 04-21-2008, 04:01 AM   #8
H_TeXMeX_H
LQ Guru
 
Registered: Oct 2005
Location: $RANDOM
Distribution: slackware64
Posts: 12,928
Blog Entries: 2

Rep: Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301
Isn't this advertising ... and useless as well. What's wrong with 'split' and 'cat', guess you would have no idea what I'm talking about anyway.
 
Old 04-21-2008, 09:50 AM   #9
jay73
LQ Guru
 
Registered: Nov 2006
Location: Belgium
Distribution: Ubuntu 11.04, Debian testing
Posts: 5,019

Rep: Reputation: 133Reputation: 133
What is wrong with them? They are an utter waste of my time. I recently had to join seven parts together. By the time I had typed them all onto the command line or into a script, I could have extracted ten such sets using a GUI.
 
Old 04-21-2008, 09:58 AM   #10
H_TeXMeX_H
LQ Guru
 
Registered: Oct 2005
Location: $RANDOM
Distribution: slackware64
Posts: 12,928
Blog Entries: 2

Rep: Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301
I hope you're kidding ...
 
Old 04-21-2008, 10:03 AM   #11
jay73
LQ Guru
 
Registered: Nov 2006
Location: Belgium
Distribution: Ubuntu 11.04, Debian testing
Posts: 5,019

Rep: Reputation: 133Reputation: 133
Clearly you have never seen HJSplit. You just select the first part and you click on "join", that's it. Now tell me how much faster the command line will be if, as I said, you have to join seven parts, each of which has a title of about 40 characters...Sure, you can use tab completion to speed things up, but still.

Last edited by jay73; 04-21-2008 at 10:05 AM.
 
Old 04-21-2008, 10:07 AM   #12
lazlow
Senior Member
 
Registered: Jan 2006
Posts: 4,363

Rep: Reputation: 172Reputation: 172
cat "sfadhjhksaf"* >big.avi
 
Old 04-21-2008, 10:11 AM   #13
jay73
LQ Guru
 
Registered: Nov 2006
Location: Belgium
Distribution: Ubuntu 11.04, Debian testing
Posts: 5,019

Rep: Reputation: 133Reputation: 133
Interesting but I still don't you see how that could be faster? At best it will be just as fast, which makes it simply a matter of personal taste.
Clearly another of those issues that can be argues endlessly...

Last edited by jay73; 04-21-2008 at 10:15 AM.
 
Old 04-21-2008, 11:09 AM   #14
SqdnGuns
Senior Member
 
Registered: Aug 2005
Location: Pensacola, FL
Distribution: Slackware64® Current & Arch
Posts: 1,092

Original Poster
Rep: Reputation: 174Reputation: 174
Quote:
Originally Posted by H_TeXMeX_H View Post
Isn't this advertising ... and useless as well. What's wrong with 'split' and 'cat', guess you would have no idea what I'm talking about anyway.
NO........and take you pissy attitude elsewhere FFS.
 
Old 04-21-2008, 12:18 PM   #15
H_TeXMeX_H
LQ Guru
 
Registered: Oct 2005
Location: $RANDOM
Distribution: slackware64
Posts: 12,928
Blog Entries: 2

Rep: Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301
you people are silly, that's all I have to say, to download a proprietary (probably adware) program to replace what is already available on your system right now in an open-source form

Heck I could even write myself a small script usable through the 'send to' option on many file browsers that will do the same thing even faster than your GUI, not to mention that by the time the GUI pops up I would have used cat from the command line to do the same.

Why do you even use Linux ? Why waste the time to install it ? Use Window$ and all their BS, don't think you can escape it by using Linux with proprietary programs. But go right ahead, I ain't stopping you.

Quote:
Originally Posted by SqdnGuns View Post
NO........and take you pissy attitude elsewhere FFS.
No problem, this is my last post in this thread, but I hope it gets closed. I don't see how this is not advertisement. Starting a thread solely about a proprietary product ... not advertisement at all.

Last edited by H_TeXMeX_H; 04-21-2008 at 12:23 PM.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
HJSplit help? spideywebsling Linux - Software 5 08-08-2004 10:25 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 03:06 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration