-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update license year & fix whitespace
* license year update to 2014 * some minor changes in universal.pl
- Loading branch information
Showing
4 changed files
with
24 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,4 +31,4 @@ Find us on LaunchPad | |
|
||
|
||
|
||
Copyright (c) 2011-2013 Shubham Chaudhary <[email protected]> | ||
Copyright (c) 2011-2014 Shubham Chaudhary <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# install | ||
# | ||
# Copyright (c) 2012-2013 Shubham Chaudhary <[email protected]> | ||
# Copyright (c) 2012-2014 Shubham Chaudhary <[email protected]> | ||
# | ||
# This program is free software; you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
|
@@ -16,8 +16,8 @@ | |
# along with this program; if not, write to the Free Software | ||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, | ||
# MA 02110-1301, USA. | ||
# | ||
# | ||
# | ||
# | ||
|
||
#This script installs universal compilation tool for different programming languages | ||
|
||
|
@@ -44,7 +44,7 @@ helpInstall(){ | |
echo " # permissions. Provide password when asked or run as su. #" | ||
echo " # #" | ||
echo " # Note : If install file does not have execution permission you #" | ||
echo " # should execute this command first #" | ||
echo " # should execute this command first #" | ||
echo " # \`sudo chmod 777 install universal.pl\` #" | ||
echo " # #" | ||
echo " # To Uninstall previous installations type: #" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
#!/usr/bin/perl -w | ||
# universal.pl | ||
# | ||
# Copyright (c) 2011-2013 Shubham Chaudhary <[email protected]> | ||
# Copyright (c) 2011-2014 Shubham Chaudhary <[email protected]> | ||
# | ||
# This program is free software; you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
|
@@ -17,8 +17,8 @@ | |
# along with this program; if not, write to the Free Software | ||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, | ||
# MA 02110-1301, USA. | ||
# | ||
# | ||
# | ||
# | ||
|
||
use strict; | ||
use warnings; | ||
|
@@ -41,10 +41,10 @@ sub usage { | |
print "\n"; #newline | ||
#print "# # # # # # # # # # # # # # # # # # # # # # # # # # # #" | ||
print " #######################################################\n"; | ||
print " # - - - Universal Compiler Usage - - - (c) #\n"; | ||
print " # USAGE: universal <filename> <test option> #\n"; | ||
print " # - - - Universal Compiler Usage - - - (c) #\n"; | ||
print " # USAGE: universal <filename> #\n"; | ||
print " # Compaitable with '.c' '.cpp' '.py' '.java' files #\n"; | ||
print " # For Full Help: \`universal help\` #\n"; | ||
print " # For Full Help: \`universal --help\` or \`u -h\` #\n"; | ||
# print " # #\n"; | ||
# print " #######################################################\n"; | ||
# print " # Program: Universal Compiler - Programming made easy #\n"; | ||
|
@@ -58,22 +58,22 @@ sub helpFun { | |
print "\n"; #newline | ||
#print "# # # # # # # # # # # # # # # # # # # # # # # # # # # #" | ||
print " #######################################################\n"; | ||
print " # + + + Universal Compiler Help + + + (c) #\n"; | ||
print " # + + + Universal Compiler Help + + + (c) #\n"; | ||
print " # #\n"; | ||
print " # Aliases: 'universal' and 'u' and 'c' #\n"; | ||
print " # That means you may also use: #\n"; | ||
print " # \`universal help\` \`u help\` #\n"; | ||
print " # \`u --help\` \`universal --help\` #\n"; | ||
print " # #\n"; | ||
print " # USAGE: universal <filename> #\n"; | ||
print " # universal <filename> <test option> #\n"; | ||
print " # universal <filename> <test option> #\n"; | ||
print " # e.g 'universal hello.cpp' #\n"; | ||
print " # 'universal HelloWorld.java' #\n"; | ||
print " # Automated Testing options: t, t1, t2, t3 #\n"; | ||
print " # For Full Help: 'universal help' #\n"; | ||
print " # #\n"; | ||
print " # For Full Help: 'universal -h' #\n"; | ||
print " # #\n"; | ||
print " # Compaitable with '.c' '.cpp' '.py' '.java' files #\n"; | ||
print " # #\n"; | ||
print " # Update Version: \`universal download\` #\n"; | ||
print " # Update Version: \`universal -u\` #\n"; | ||
print " # Or see README.md to get download link #\n"; | ||
print " # #\n"; | ||
print " #######################################################\n"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# universal.sh | ||
# | ||
# Copyright (c) 2011-2013 Shubham Chaudhary <[email protected]> | ||
# Copyright (c) 2011-2014 Shubham Chaudhary <[email protected]> | ||
# | ||
# This program is free software; you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
|
@@ -16,17 +16,17 @@ | |
# along with this program; if not, write to the Free Software | ||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, | ||
# MA 02110-1301, USA. | ||
# | ||
# | ||
# | ||
# | ||
|
||
##this script compiles .c & .cpp files | ||
function usage { | ||
echo #newline | ||
#echo "# # # # # # # # # # # # # # # # # # # # # # # # # # # #" | ||
echo " #######################################################" | ||
echo " # - - - Universal Compiler Usage - - - (c) #" | ||
echo " # - - - Universal Compiler Usage - - - (c) #" | ||
echo " # #" | ||
echo " # USAGE: universal.sh <filename> <test option> #" | ||
echo " # USAGE: universal.sh <filename> <test option> #" | ||
echo " # Compaitable with '.c' '.cpp' '.py' '.java' files #" | ||
echo " # #" | ||
echo " # For Full Help: \`universal.sh help\` #" | ||
|
@@ -42,14 +42,14 @@ function helpFun { | |
echo #newline | ||
#echo "# # # # # # # # # # # # # # # # # # # # # # # # # # # #" | ||
echo " #######################################################" | ||
echo " # + + + Universal Compiler Help + + + (c) #" | ||
echo " # + + + Universal Compiler Help + + + (c) #" | ||
echo " # #" | ||
echo " # Aliases: 'universal' and 'universal.sh' and 'c' #" | ||
echo " # That means you may also use: #" | ||
echo " # \`universal help\` \`c help\` #" | ||
echo " # #" | ||
echo " # USAGE: universal.sh <filename> #" | ||
echo " # universal.sh <filename> <test option> #" | ||
echo " # universal.sh <filename> <test option> #" | ||
echo " # e.g 'universal.sh hello.cpp' #" | ||
echo " # 'universal.sh HelloWorld.java' #" | ||
echo " # Automated Testing options: t, t1, t2, t3 #" | ||
|