LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
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 05-16-2015, 11:15 AM   #1
veerain
Senior Member
 
Registered: Mar 2005
Location: Earth bound to Helios
Distribution: Custom
Posts: 2,524

Rep: Reputation: 319Reputation: 319Reputation: 319Reputation: 319
[ANNOUNCE] - V-tools, a set of unix/linux command line tools


V-tools, a set of unix/linux command line tools developed by me.

It has:

v-reboot: A command for functioning like linux reboot syscall.

v-write: Write string to screen or file.

v-bnr: A kind of binary/newline/radix converter for unix/linux.

For radix 64 we use RFC 4648; we strictly use =, no line terminators, no crc

v-file-stz: ASCII TEXT Sanitizer.

Only ASCII letters from (8-13) and (32 - 126) are there in the output.

Get it from my website.

Last edited by veerain; 05-16-2015 at 11:16 AM.
 
Old 05-17-2015, 11:14 AM   #2
arizonagroovejet
Senior Member
 
Registered: Jun 2005
Location: England
Distribution: openSUSE, Fedora, CentOS
Posts: 1,094

Rep: Reputation: 198Reputation: 198
Quote:
Originally Posted by veerain View Post
v-write: Write string to screen or file.
Code:
$ echo "boo"
$ echo "boo" > file
$ echo "boo" >> file
$ echo "boo" | tee file
$ cat > file << EOF
boo
EOF
What's special about v-write?
 
Old 05-17-2015, 11:50 AM   #3
TB0ne
LQ Guru
 
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 26,632

Rep: Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965
Quote:
Originally Posted by arizonagroovejet View Post
Code:
$ echo "boo"
$ echo "boo" > file
$ echo "boo" >> file
$ echo "boo" | tee file
$ cat > file << EOF
boo
EOF
What's special about v-write?
Was wondering the same things, and about the other 'tools' as well. I already have a reboot command (v-reboot), and the v-write command is (as you said), the echo command. v-bnr would seem to be the standard tr command, and the v-file-stz can easily be accomplished with a regex in sed.

This goes along with three other 'announcements', which seem designed to drive traffic to the OP's blog. See those others here:
http://www.linuxquestions.org/questi...er-4175542777/
http://www.linuxquestions.org/questi...=1#post5363681

...and there's a tic-tac-toe program too.

Last edited by TB0ne; 05-17-2015 at 12:01 PM.
 
Old 05-17-2015, 12:07 PM   #4
arizonagroovejet
Senior Member
 
Registered: Jun 2005
Location: England
Distribution: openSUSE, Fedora, CentOS
Posts: 1,094

Rep: Reputation: 198Reputation: 198
Quote:
Originally Posted by TB0ne View Post
...and there's a tic-tac-toe program too.
Quote:
In this implemenation you play against a computer opponent.
Pfft. Can't even be made to play against itself and thus prevent global thermonuclear war.
 
Old 05-18-2015, 05:44 AM   #5
veerain
Senior Member
 
Registered: Mar 2005
Location: Earth bound to Helios
Distribution: Custom
Posts: 2,524

Original Poster
Rep: Reputation: 319Reputation: 319Reputation: 319Reputation: 319
v-write was helpful for writing string to file or screen with skarnet execline command.

v-bnr is supporting utility to dpm package manager. It is a fast 'C' implementation.

v-filestz is also a fast 'C' implementation.

v-reboot is supporting utility for s6-svscan of skarnet s6 utility. By default that utility doesn't catches CTRL-ALT-DEL key combo and just does hard reboot.

Last edited by veerain; 05-18-2015 at 05:45 AM.
 
Old 05-18-2015, 06:43 AM   #6
arizonagroovejet
Senior Member
 
Registered: Jun 2005
Location: England
Distribution: openSUSE, Fedora, CentOS
Posts: 1,094

Rep: Reputation: 198Reputation: 198
Quote:
Originally Posted by veerain View Post
v-write was helpful for writing string to file or screen with skarnet execline command.

v-bnr is supporting utility to dpm package manager. It is a fast 'C' implementation.

v-filestz is also a fast 'C' implementation.

v-reboot is supporting utility for s6-svscan of skarnet s6 utility. By default that utility doesn't catches CTRL-ALT-DEL key combo and just does hard reboot.
None of which is evident from your original post or your website. If you're going to make things like this it's a good idea to explain stuff like why you've made them, why people might want to use them and how to use them.
 
1 members found this post helpful.
Old 05-18-2015, 08:22 AM   #7
TB0ne
LQ Guru
 
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 26,632

Rep: Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965Reputation: 7965
Quote:
Originally Posted by arizonagroovejet View Post
None of which is evident from your original post or your website. If you're going to make things like this it's a good idea to explain stuff like why you've made them, why people might want to use them and how to use them.
Also, posting them to your own blog (rather than posting them to Sourceforge or Github), would seem to only serve to drive traffic to your site.
 
  


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
[ANNOUNCE] - V-linux-tools, a set of linux command line tools veerain Linux - Software 5 05-19-2015 08:55 AM
LXer: 13 Command Line Tools for Audio on Linux LXer Syndicated Linux News 0 07-06-2008 02:20 PM
LXer: Using Python to create UNIX command line tools LXer Syndicated Linux News 0 03-20-2008 08:20 AM
LXer: Standardize Your UNIX Command-Line Tools LXer Syndicated Linux News 0 08-22-2006 10:54 PM
how do I set a path for my java command line tools darkone66669 Linux - Newbie 1 04-19-2004 06:28 PM

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

All times are GMT -5. The time now is 04:06 AM.

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