From 7dde6255f8dc33e181ca0cfd6477f4789bdfb6ce Mon Sep 17 00:00:00 2001 From: onkardevops7m Date: Sat, 13 Jul 2019 11:43:48 +0530 Subject: [PATCH 01/23] change in file --- 063-weather.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/063-weather.sh b/063-weather.sh index 073a1dd..e23f5db 100755 --- a/063-weather.sh +++ b/063-weather.sh @@ -36,3 +36,4 @@ lynx -source "${wxurl}$1" | \ head -$size exit 0 +updated From e0e53d02bf7d1923bbb07cf169fdcdeed4b71062 Mon Sep 17 00:00:00 2001 From: onkardevops7m <51951190+onkardevops7m@users.noreply.github.com> Date: Sat, 13 Jul 2019 12:03:02 +0530 Subject: [PATCH 02/23] Update 062-define.sh --- 062-define.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/062-define.sh b/062-define.sh index ae1f80f..b6488c3 100755 --- a/062-define.sh +++ b/062-define.sh @@ -25,3 +25,5 @@ lynx -source "$url$1" | \ ) exit 0 + +updated code... From e6a6cbe938514ba3b180aa3d1b7aa92753b44a2d Mon Sep 17 00:00:00 2001 From: onkardevops7m Date: Sat, 13 Jul 2019 15:19:53 +0530 Subject: [PATCH 03/23] ver1 --- 001-inpath.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/001-inpath.sh b/001-inpath.sh index 361cfb6..2574f00 100755 --- a/001-inpath.sh +++ b/001-inpath.sh @@ -55,3 +55,4 @@ case $? in esac exit 0 +ver1 From b0cfb6e93c2b39efa360194b00c5b7a624837303 Mon Sep 17 00:00:00 2001 From: onkardevops7m Date: Sat, 13 Jul 2019 15:22:45 +0530 Subject: [PATCH 04/23] ver2 --- 001-inpath.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/001-inpath.sh b/001-inpath.sh index 361cfb6..6ee3ce4 100755 --- a/001-inpath.sh +++ b/001-inpath.sh @@ -55,3 +55,4 @@ case $? in esac exit 0 +ver2 From d3f46550403ec573983c7e41a8521e3661bc246f Mon Sep 17 00:00:00 2001 From: onkardevops7m <51951190+onkardevops7m@users.noreply.github.com> Date: Sat, 13 Jul 2019 15:30:17 +0530 Subject: [PATCH 05/23] Revert "ver2" --- 001-inpath.sh | 3 --- 1 file changed, 3 deletions(-) diff --git a/001-inpath.sh b/001-inpath.sh index ea43c39..2574f00 100755 --- a/001-inpath.sh +++ b/001-inpath.sh @@ -55,7 +55,4 @@ case $? in esac exit 0 - -ver2 ver1 - From 54e59623c3484bce8736b5694f3b932d4d891714 Mon Sep 17 00:00:00 2001 From: onkardevops7m <51951190+onkardevops7m@users.noreply.github.com> Date: Sat, 13 Jul 2019 15:31:11 +0530 Subject: [PATCH 06/23] Revert "ver1" --- 001-inpath.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/001-inpath.sh b/001-inpath.sh index 2574f00..361cfb6 100755 --- a/001-inpath.sh +++ b/001-inpath.sh @@ -55,4 +55,3 @@ case $? in esac exit 0 -ver1 From 3c7068e311cb04e26d3d6ffcbdecc9782be9e1d9 Mon Sep 17 00:00:00 2001 From: onkardevops7m Date: Sat, 13 Jul 2019 15:45:01 +0530 Subject: [PATCH 07/23] delete --- 001-inpath.sh | 58 --------------------------------------------------- 1 file changed, 58 deletions(-) delete mode 100755 001-inpath.sh diff --git a/001-inpath.sh b/001-inpath.sh deleted file mode 100755 index 6ee3ce4..0000000 --- a/001-inpath.sh +++ /dev/null @@ -1,58 +0,0 @@ -#!/bin/sh -# inpath - verify that a specified program is either valid as-is, -# or can be found in the PATH directory list. - -in_path() -{ - # given a command and the PATH, try to find the command. Returns - # 0 if found and executable, 1 if not. Note that this temporarily modifies - # the the IFS (input field seperator), but restores it upon completion. - - cmd=$1 path=$2 retval=1 - oldIFS=$IFS IFS=":" - - for directory in $path - do - if [ -x $directory/$cmd ] ; then - retval=0 # if we're here, we found $cmd in $directory - fi - done - IFS=$oldIFS - return $retval -} - -checkForCmdInPath() -{ - var=$1 - - # The variable slicing notation in the following conditional - # needs some explanation: ${var#expr} returns everything after - # the match for 'expr' in the variable value (if any), and - # ${var%expr} returns everything that doesn't match (in this - # case just the very first character. You can also do this in - # Bash with ${var:0:1} and you could use cut too: cut -c1 - - if [ "$var" != "" ] ; then - if [ "${var%${var#?}}" = "/" ] ; then - if [ ! -x $var ] ; then - return 1 - fi - elif ! in_path $var $PATH ; then - return 2 - fi - fi -} - -if [ $# -ne 1 ] ; then - echo "Usage: $0 command" >&2 ; exit 1 -fi - -checkForCmdInPath "$1" -case $? in - 0 ) echo "$1 found in PATH" ;; - 1 ) echo "$1 not found or not executable" ;; - 2 ) echo "$1 not found in PATH" ;; -esac - -exit 0 -ver2 From 9c242c5840f313dc34334ee4fd95f34d1dad86ab Mon Sep 17 00:00:00 2001 From: onkardevops7m Date: Sat, 13 Jul 2019 15:47:10 +0530 Subject: [PATCH 08/23] ver2 --- 002-validalnum.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/002-validalnum.sh b/002-validalnum.sh index e2b1658..45508ff 100755 --- a/002-validalnum.sh +++ b/002-validalnum.sh @@ -29,3 +29,4 @@ else fi exit 0 +ver2 From e43d44d19e622c88182617b7484bcfcf9dcc72ab Mon Sep 17 00:00:00 2001 From: onkardevops7m Date: Sat, 13 Jul 2019 16:04:14 +0530 Subject: [PATCH 09/23] stash --- 002-validalnum.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/002-validalnum.sh b/002-validalnum.sh index 45508ff..c7857a1 100755 --- a/002-validalnum.sh +++ b/002-validalnum.sh @@ -30,3 +30,4 @@ fi exit 0 ver2 +ver2.0 From b7eb2cad31cee7a1a0e0126c3366ffcb53644d9f Mon Sep 17 00:00:00 2001 From: onkardevops7m Date: Sat, 13 Jul 2019 16:48:13 +0530 Subject: [PATCH 10/23] Commit using eclips --- testproject/.classpath | 10 ++++++++++ testproject/.gitignore | 1 + testproject/.project | 17 +++++++++++++++++ .../.settings/org.eclipse.jdt.core.prefs | 14 ++++++++++++++ testproject/src/module-info.java | 3 +++ testproject/src/test1.java | 4 ++++ 6 files changed, 49 insertions(+) create mode 100644 testproject/.classpath create mode 100644 testproject/.gitignore create mode 100644 testproject/.project create mode 100644 testproject/.settings/org.eclipse.jdt.core.prefs create mode 100644 testproject/src/module-info.java create mode 100644 testproject/src/test1.java diff --git a/testproject/.classpath b/testproject/.classpath new file mode 100644 index 0000000..dd8173b --- /dev/null +++ b/testproject/.classpath @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/testproject/.gitignore b/testproject/.gitignore new file mode 100644 index 0000000..ae3c172 --- /dev/null +++ b/testproject/.gitignore @@ -0,0 +1 @@ +/bin/ diff --git a/testproject/.project b/testproject/.project new file mode 100644 index 0000000..a767fbc --- /dev/null +++ b/testproject/.project @@ -0,0 +1,17 @@ + + + testproject + + + + + + org.eclipse.jdt.core.javabuilder + + + + + + org.eclipse.jdt.core.javanature + + diff --git a/testproject/.settings/org.eclipse.jdt.core.prefs b/testproject/.settings/org.eclipse.jdt.core.prefs new file mode 100644 index 0000000..2b084d8 --- /dev/null +++ b/testproject/.settings/org.eclipse.jdt.core.prefs @@ -0,0 +1,14 @@ +eclipse.preferences.version=1 +org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled +org.eclipse.jdt.core.compiler.codegen.targetPlatform=12 +org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve +org.eclipse.jdt.core.compiler.compliance=12 +org.eclipse.jdt.core.compiler.debug.lineNumber=generate +org.eclipse.jdt.core.compiler.debug.localVariable=generate +org.eclipse.jdt.core.compiler.debug.sourceFile=generate +org.eclipse.jdt.core.compiler.problem.assertIdentifier=error +org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled +org.eclipse.jdt.core.compiler.problem.enumIdentifier=error +org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning +org.eclipse.jdt.core.compiler.release=enabled +org.eclipse.jdt.core.compiler.source=12 diff --git a/testproject/src/module-info.java b/testproject/src/module-info.java new file mode 100644 index 0000000..6209a1d --- /dev/null +++ b/testproject/src/module-info.java @@ -0,0 +1,3 @@ +module testproject { + +} \ No newline at end of file diff --git a/testproject/src/test1.java b/testproject/src/test1.java new file mode 100644 index 0000000..4215b1d --- /dev/null +++ b/testproject/src/test1.java @@ -0,0 +1,4 @@ + +public class test1 { + +} From 5d3f2e5e22d05230310dd11282241461121b4d0c Mon Sep 17 00:00:00 2001 From: onkardevops7m Date: Sat, 13 Jul 2019 16:48:50 +0530 Subject: [PATCH 11/23] commit for push --- testproject/src/test2.java | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 testproject/src/test2.java diff --git a/testproject/src/test2.java b/testproject/src/test2.java new file mode 100644 index 0000000..48fe137 --- /dev/null +++ b/testproject/src/test2.java @@ -0,0 +1,4 @@ + +public class test2 { + +} From 405c7665caf3e664d17c37e2891d0fe2f4309952 Mon Sep 17 00:00:00 2001 From: onkardevops7m <51951190+onkardevops7m@users.noreply.github.com> Date: Sat, 13 Jul 2019 16:51:27 +0530 Subject: [PATCH 12/23] Update test1.java --- testproject/src/test1.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/testproject/src/test1.java b/testproject/src/test1.java index 4215b1d..1181d6d 100644 --- a/testproject/src/test1.java +++ b/testproject/src/test1.java @@ -1,4 +1,6 @@ public class test1 { + + # this is modified by developer } From 907e0dbad5046a5d310e6aa00e0063664f570ee3 Mon Sep 17 00:00:00 2001 From: onkardevops7m Date: Sat, 13 Jul 2019 16:54:14 +0530 Subject: [PATCH 13/23] changed by developer --- testproject/src/test1.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testproject/src/test1.java b/testproject/src/test1.java index 1181d6d..1f95a2d 100644 --- a/testproject/src/test1.java +++ b/testproject/src/test1.java @@ -2,5 +2,5 @@ public class test1 { # this is modified by developer - +# this changes is made by locally } From 9ca460b32cdccaad161470cbacd90e2c2dd8885b Mon Sep 17 00:00:00 2001 From: onkardevops7m Date: Sat, 13 Jul 2019 16:55:46 +0530 Subject: [PATCH 14/23] changed by devloper --- testproject/src/test1.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testproject/src/test1.java b/testproject/src/test1.java index 1f95a2d..7cc526a 100644 --- a/testproject/src/test1.java +++ b/testproject/src/test1.java @@ -2,5 +2,5 @@ public class test1 { # this is modified by developer -# this changes is made by locally + # this changes is made by locally... } From ba5fce5f08663e02676cd69aedbe8a75674de720 Mon Sep 17 00:00:00 2001 From: onkardevops7m Date: Sat, 13 Jul 2019 18:31:22 +0530 Subject: [PATCH 15/23] firt commit for eclips --- palindrome.sh | 38 +++---- ragged.txt | 20 ++-- sample.crontab | 68 ++++++------ state.capitals.txt | 100 +++++++++--------- testproject1/.classpath | 10 ++ testproject1/.gitignore | 1 + testproject1/.project | 17 +++ .../.settings/org.eclipse.jdt.core.prefs | 14 +++ testproject1/src/module-info.java | 6 ++ text.snippet.txt | 16 +-- tinyscript.sh | 2 +- 11 files changed, 170 insertions(+), 122 deletions(-) create mode 100644 testproject1/.classpath create mode 100644 testproject1/.gitignore create mode 100644 testproject1/.project create mode 100644 testproject1/.settings/org.eclipse.jdt.core.prefs create mode 100644 testproject1/src/module-info.java diff --git a/palindrome.sh b/palindrome.sh index 04336ab..cf269bc 100644 --- a/palindrome.sh +++ b/palindrome.sh @@ -1,19 +1,19 @@ -#!/bin/sh - -# specify palindrome possibility as args - -if [ $# -eq 0 ] ; then - echo Usage: $0 possible palindrome >&2 - exit 1 -fi - -testit="$(echo $@ | sed 's/[^[:alpha:]]//g' | tr '[:upper:]' '[:lower:]')" -backwards="$(echo $testit | rev)" - -if [ "$testit" = "$backwards" ] ; then - echo "$@ is a palindrome" -else - echo "$@ is not a palindrome" -fi - -exit 0 +#!/bin/sh + +# specify palindrome possibility as args + +if [ $# -eq 0 ] ; then + echo Usage: $0 possible palindrome >&2 + exit 1 +fi + +testit="$(echo $@ | sed 's/[^[:alpha:]]//g' | tr '[:upper:]' '[:lower:]')" +backwards="$(echo $testit | rev)" + +if [ "$testit" = "$backwards" ] ; then + echo "$@ is a palindrome" +else + echo "$@ is not a palindrome" +fi + +exit 0 diff --git a/ragged.txt b/ragged.txt index 9aba255..d48f8e7 100644 --- a/ragged.txt +++ b/ragged.txt @@ -1,10 +1,10 @@ -So she sat on, with closed eyes, and half believed herself in -Wonderland, though she knew she had but to open them again, and -all would change to dull reality--the grass would be only rustling -in the wind, and the pool rippling to the waving of the reeds--the -rattling teacups would change to tinkling sheep-bells, and the -Queen's shrill cries to the voice of the shepherd boy--and the -sneeze of the baby, the shriek of the Gryphon, and all the other -queer noises, would change (she knew) to the confused clamour of -the busy farm-yard--while the lowing of the cattle in the distance -would take the place of the Mock Turtle's heavy sobs. +So she sat on, with closed eyes, and half believed herself in +Wonderland, though she knew she had but to open them again, and +all would change to dull reality--the grass would be only rustling +in the wind, and the pool rippling to the waving of the reeds--the +rattling teacups would change to tinkling sheep-bells, and the +Queen's shrill cries to the voice of the shepherd boy--and the +sneeze of the baby, the shriek of the Gryphon, and all the other +queer noises, would change (she knew) to the confused clamour of +the busy farm-yard--while the lowing of the cattle in the distance +would take the place of the Mock Turtle's heavy sobs. diff --git a/sample.crontab b/sample.crontab index 493638a..18ad729 100644 --- a/sample.crontab +++ b/sample.crontab @@ -1,34 +1,34 @@ -# DO NOT EDIT THIS FILE - edit the master and reinstall. -# (/tmp/crontab.4646 installed on Mon Dec 2 01:36:36 2002) -# (Cron version -- $Id: crontab.c,v 2.13 1994/01/17 03:20:37 vixie Exp $) -SHELL=/bin/bash -PATH=/sbin:/bin:/usr/sbin:/usr/bin -MAILTO=klauser@klauser.ch - -1 * * * 5 /home/ACeSystem/sbin/inquiries_quality.pl -03,25 20 3-16 * * /home/ACeSystem/sbin/clean_news.pl -06 22 * * Mou /home/ACeSystem/bin/del_old_ACinventories.pl -08 22 * * 1-3,6 /home/ACeSystem/bin/dumpACinventories.pl -99 22 * * 1-3,6 /home/ACeSystem/bin/dump_cust_part_no.pl -25 22 * * 0-4 /home/ACeSystem/bin/files2ACinventories.pl 2>/dev/null -### 05 23 * * 0-4 /home/ACeSystem/bin/getACinventory.sh -05 23 * * 0-4 /home/ACeSystem/bin/getLaser.sh -50 23 * Oct * /home/ACeSystem/bin/examine_ACinventories.pl - - - -# DO NOT EDIT THIS FILE - edit the master and reinstall. -# (/tmp/crontab.kmSWI17568 installed on Thu Jun 27 12:38:53 2002) -# (Cron version -- $FreeBSD: src/usr.sbin/cron/crontab/crontab.c,v 1.11.2.1 1999/08/29 15:40:42 peter Exp $) -#0 8,10,13 * * 1-5 /usr/home/rich/bldg400/check1e -#10 8,10,13 * * 1-5 /usr/home/rich/bldg400/check1w -#20 8,10,13 * * 1-5 /usr/home/rich/bldg400/check2e -#30 8,10,13 * * 1-5 /usr/home/rich/bldg400/check2w -#40 8,10,13 * * 1-5 /usr/home/rich/bldg400/check3e -#50 8,10,13 * * 1-5 /usr/home/rich/bldg400/check3w -#0 6-17 * * 1-5 /usr/home/rich/switch/checkit -0 6-17 * * 1-5 /usr/home/rich/switch/check/checkM -30 5 * * 1-5 /usr/home/rich/switch/check/checkB -30 11 * * 1-5 /usr/home/rich/switch/check/checkR -0,5,10,15,20,25,30,35,40,45,50,55 5-18 * * 1-5 /usr/home/rich/cisco/utils -55 4 * * 1-5 /usr/home/rich/cisco/mailit +# DO NOT EDIT THIS FILE - edit the master and reinstall. +# (/tmp/crontab.4646 installed on Mon Dec 2 01:36:36 2002) +# (Cron version -- $Id: crontab.c,v 2.13 1994/01/17 03:20:37 vixie Exp $) +SHELL=/bin/bash +PATH=/sbin:/bin:/usr/sbin:/usr/bin +MAILTO=klauser@klauser.ch + +1 * * * 5 /home/ACeSystem/sbin/inquiries_quality.pl +03,25 20 3-16 * * /home/ACeSystem/sbin/clean_news.pl +06 22 * * Mou /home/ACeSystem/bin/del_old_ACinventories.pl +08 22 * * 1-3,6 /home/ACeSystem/bin/dumpACinventories.pl +99 22 * * 1-3,6 /home/ACeSystem/bin/dump_cust_part_no.pl +25 22 * * 0-4 /home/ACeSystem/bin/files2ACinventories.pl 2>/dev/null +### 05 23 * * 0-4 /home/ACeSystem/bin/getACinventory.sh +05 23 * * 0-4 /home/ACeSystem/bin/getLaser.sh +50 23 * Oct * /home/ACeSystem/bin/examine_ACinventories.pl + + + +# DO NOT EDIT THIS FILE - edit the master and reinstall. +# (/tmp/crontab.kmSWI17568 installed on Thu Jun 27 12:38:53 2002) +# (Cron version -- $FreeBSD: src/usr.sbin/cron/crontab/crontab.c,v 1.11.2.1 1999/08/29 15:40:42 peter Exp $) +#0 8,10,13 * * 1-5 /usr/home/rich/bldg400/check1e +#10 8,10,13 * * 1-5 /usr/home/rich/bldg400/check1w +#20 8,10,13 * * 1-5 /usr/home/rich/bldg400/check2e +#30 8,10,13 * * 1-5 /usr/home/rich/bldg400/check2w +#40 8,10,13 * * 1-5 /usr/home/rich/bldg400/check3e +#50 8,10,13 * * 1-5 /usr/home/rich/bldg400/check3w +#0 6-17 * * 1-5 /usr/home/rich/switch/checkit +0 6-17 * * 1-5 /usr/home/rich/switch/check/checkM +30 5 * * 1-5 /usr/home/rich/switch/check/checkB +30 11 * * 1-5 /usr/home/rich/switch/check/checkR +0,5,10,15,20,25,30,35,40,45,50,55 5-18 * * 1-5 /usr/home/rich/cisco/utils +55 4 * * 1-5 /usr/home/rich/cisco/mailit diff --git a/state.capitals.txt b/state.capitals.txt index 1a92e01..7314f47 100644 --- a/state.capitals.txt +++ b/state.capitals.txt @@ -1,50 +1,50 @@ -Alabama Montgomery -Alaska Juneau -Arizona Phoenix -Arkansas Little-Rock -California Sacramento -Colorado Denver -Connecticut Hartford -Delaware Dover -Florida Tallahassee -Georgia Atlanta -Hawaii Honolulu -Idaho Boise -Illinois Springfield -Indiana Indianapolis -Iowa Des-Moines -Kansas Topeka -Kentucky Frankfort -Louisiana Baton-Rouge -Maine Augusta -Maryland Annapolis -Massachusetts Boston -Michigan Lansing -Minnesota St.-Paul -Mississippi Jackson -Missouri Jefferson-City -Montana Helena -Nebraska Lincoln -Nevada Carson-City -New-Hampshire Concord -New-Jersey Trenton -New-Mexico Santa-Fe -New-York Albany -North-Carolina Raleigh -North-Dakota Bismarck -Ohio Columbus -Oklahoma Oklahoma-City -Oregon Salem Portland -Pennsylvania Harrisburg -Rhode-Island Providence -South-Carolina Columbia -South-Dakota Pierre -Tennessee Nashville -Texas Austin -Utah Salt-Lake-City -Vermont Montpelier -Virginia Richmond -Washington Olympia -West-Virginia Charleston -Wisconsin Madison -Wyoming Cheyenne +Alabama Montgomery +Alaska Juneau +Arizona Phoenix +Arkansas Little-Rock +California Sacramento +Colorado Denver +Connecticut Hartford +Delaware Dover +Florida Tallahassee +Georgia Atlanta +Hawaii Honolulu +Idaho Boise +Illinois Springfield +Indiana Indianapolis +Iowa Des-Moines +Kansas Topeka +Kentucky Frankfort +Louisiana Baton-Rouge +Maine Augusta +Maryland Annapolis +Massachusetts Boston +Michigan Lansing +Minnesota St.-Paul +Mississippi Jackson +Missouri Jefferson-City +Montana Helena +Nebraska Lincoln +Nevada Carson-City +New-Hampshire Concord +New-Jersey Trenton +New-Mexico Santa-Fe +New-York Albany +North-Carolina Raleigh +North-Dakota Bismarck +Ohio Columbus +Oklahoma Oklahoma-City +Oregon Salem Portland +Pennsylvania Harrisburg +Rhode-Island Providence +South-Carolina Columbia +South-Dakota Pierre +Tennessee Nashville +Texas Austin +Utah Salt-Lake-City +Vermont Montpelier +Virginia Richmond +Washington Olympia +West-Virginia Charleston +Wisconsin Madison +Wyoming Cheyenne diff --git a/testproject1/.classpath b/testproject1/.classpath new file mode 100644 index 0000000..dd8173b --- /dev/null +++ b/testproject1/.classpath @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/testproject1/.gitignore b/testproject1/.gitignore new file mode 100644 index 0000000..ae3c172 --- /dev/null +++ b/testproject1/.gitignore @@ -0,0 +1 @@ +/bin/ diff --git a/testproject1/.project b/testproject1/.project new file mode 100644 index 0000000..f2d3fae --- /dev/null +++ b/testproject1/.project @@ -0,0 +1,17 @@ + + + testproject1 + + + + + + org.eclipse.jdt.core.javabuilder + + + + + + org.eclipse.jdt.core.javanature + + diff --git a/testproject1/.settings/org.eclipse.jdt.core.prefs b/testproject1/.settings/org.eclipse.jdt.core.prefs new file mode 100644 index 0000000..2b084d8 --- /dev/null +++ b/testproject1/.settings/org.eclipse.jdt.core.prefs @@ -0,0 +1,14 @@ +eclipse.preferences.version=1 +org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled +org.eclipse.jdt.core.compiler.codegen.targetPlatform=12 +org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve +org.eclipse.jdt.core.compiler.compliance=12 +org.eclipse.jdt.core.compiler.debug.lineNumber=generate +org.eclipse.jdt.core.compiler.debug.localVariable=generate +org.eclipse.jdt.core.compiler.debug.sourceFile=generate +org.eclipse.jdt.core.compiler.problem.assertIdentifier=error +org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled +org.eclipse.jdt.core.compiler.problem.enumIdentifier=error +org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning +org.eclipse.jdt.core.compiler.release=enabled +org.eclipse.jdt.core.compiler.source=12 diff --git a/testproject1/src/module-info.java b/testproject1/src/module-info.java new file mode 100644 index 0000000..a76125f --- /dev/null +++ b/testproject1/src/module-info.java @@ -0,0 +1,6 @@ +module testproject1 { + + # Java project for git practices.... + +} + diff --git a/text.snippet.txt b/text.snippet.txt index cd2bd95..cfd7a9c 100644 --- a/text.snippet.txt +++ b/text.snippet.txt @@ -1,8 +1,8 @@ -Perhaps one of the most valuable uses of shell scripts is to fix -your particular flavor of Unix and make it more like other flavors, -to bring your commands into conformance or to increase consistency -across different systems. The outsider view of Unix suggests a -nice, uniform command-line experience, helped along by the existence -and compliance with the POSIX standards for Unix, but anyone who's -ever touched more than one computer knows how much they can vary -within these broad parameters. +Perhaps one of the most valuable uses of shell scripts is to fix +your particular flavor of Unix and make it more like other flavors, +to bring your commands into conformance or to increase consistency +across different systems. The outsider view of Unix suggests a +nice, uniform command-line experience, helped along by the existence +and compliance with the POSIX standards for Unix, but anyone who's +ever touched more than one computer knows how much they can vary +within these broad parameters. diff --git a/tinyscript.sh b/tinyscript.sh index 91ef2a7..fd51fc9 100755 --- a/tinyscript.sh +++ b/tinyscript.sh @@ -1 +1 @@ -test=2 +test=2 From c87f5eea20069bfee91bc26b41c5ac5d719a71cf Mon Sep 17 00:00:00 2001 From: onkardevops7m Date: Sat, 13 Jul 2019 18:32:46 +0530 Subject: [PATCH 16/23] dfg --- testproject1/src/module-info.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testproject1/src/module-info.java b/testproject1/src/module-info.java index a76125f..47f08ab 100644 --- a/testproject1/src/module-info.java +++ b/testproject1/src/module-info.java @@ -1,6 +1,6 @@ module testproject1 { - # Java project for git practices.... + # Java project for git practices..... } From f2934669c646a5d87d4da9fc10f4238c8ee28587 Mon Sep 17 00:00:00 2001 From: onkardevops7m Date: Sat, 13 Jul 2019 18:35:50 +0530 Subject: [PATCH 17/23] new update --- testproject1/src/module-info.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/testproject1/src/module-info.java b/testproject1/src/module-info.java index 47f08ab..3be7761 100644 --- a/testproject1/src/module-info.java +++ b/testproject1/src/module-info.java @@ -1,6 +1,8 @@ module testproject1 { # Java project for git practices..... + + # new update.... } From 81a63e24695f1d38ffd748284027b8727022862a Mon Sep 17 00:00:00 2001 From: onkardevops7m <51951190+onkardevops7m@users.noreply.github.com> Date: Sat, 13 Jul 2019 18:36:44 +0530 Subject: [PATCH 18/23] Update module-info.java --- testproject1/src/module-info.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/testproject1/src/module-info.java b/testproject1/src/module-info.java index 3be7761..ea0ce29 100644 --- a/testproject1/src/module-info.java +++ b/testproject1/src/module-info.java @@ -2,7 +2,9 @@ # Java project for git practices..... - # new update.... + # new update....]] + + # update from remote host... } From 38ee56fdaed6d3c00eb45c39a7e9754800a2ef7c Mon Sep 17 00:00:00 2001 From: onkardevops7m Date: Sat, 13 Jul 2019 18:51:58 +0530 Subject: [PATCH 19/23] dfgsf --- testproject1/src/module-info.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testproject1/src/module-info.java b/testproject1/src/module-info.java index ea0ce29..92b53ad 100644 --- a/testproject1/src/module-info.java +++ b/testproject1/src/module-info.java @@ -5,6 +5,6 @@ # new update....]] # update from remote host... - +xvfvxb } From a2dfbcda661ea444216928b62391da5bc784744a Mon Sep 17 00:00:00 2001 From: onkardevops7m Date: Sat, 13 Jul 2019 18:57:49 +0530 Subject: [PATCH 20/23] asdfaf --- testproject1/src/module-info.java | 1 + 1 file changed, 1 insertion(+) diff --git a/testproject1/src/module-info.java b/testproject1/src/module-info.java index 92b53ad..f87e634 100644 --- a/testproject1/src/module-info.java +++ b/testproject1/src/module-info.java @@ -8,3 +8,4 @@ xvfvxb } +asfadsfdsafdf \ No newline at end of file From 35d20534349c386667ed4c9c03f102e1be80ea98 Mon Sep 17 00:00:00 2001 From: onkardevops7m Date: Sat, 13 Jul 2019 19:02:30 +0530 Subject: [PATCH 21/23] ver2 --- testproject1/src/module-info.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/testproject1/src/module-info.java b/testproject1/src/module-info.java index f87e634..5e1c33b 100644 --- a/testproject1/src/module-info.java +++ b/testproject1/src/module-info.java @@ -8,4 +8,6 @@ xvfvxb } -asfadsfdsafdf \ No newline at end of file +asfadsfdsafdf + +only for ver2sf \ No newline at end of file From 539e75759afe083598240f9ba15e4dc4bf3fdc7f Mon Sep 17 00:00:00 2001 From: onkardevops7m Date: Sat, 13 Jul 2019 19:09:33 +0530 Subject: [PATCH 22/23] asdfasf --- testproject1/src/module-info.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testproject1/src/module-info.java b/testproject1/src/module-info.java index 5e1c33b..f3d2eb9 100644 --- a/testproject1/src/module-info.java +++ b/testproject1/src/module-info.java @@ -10,4 +10,4 @@ asfadsfdsafdf -only for ver2sf \ No newline at end of file +only for ver2sfadf \ No newline at end of file From 32b29b6906c525ea9015ea157a88f1d1c11d409b Mon Sep 17 00:00:00 2001 From: onkardevops7m Date: Sat, 13 Jul 2019 19:13:37 +0530 Subject: [PATCH 23/23] dfgsdfg --- testproject1/src/module-info.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testproject1/src/module-info.java b/testproject1/src/module-info.java index f3d2eb9..612bc70 100644 --- a/testproject1/src/module-info.java +++ b/testproject1/src/module-info.java @@ -10,4 +10,4 @@ asfadsfdsafdf -only for ver2sfadf \ No newline at end of file +only for ver2sfadfdfggggggggggggggggggg \ No newline at end of file