├── README.md ├── directory.sh ├── file_permission.sh ├── first.sh ├── restart.sh ├── second.sh ├── shell_scripts ├── Identify_position_of_parameter.sh ├── README.md ├── application_properties.sh ├── arguments.sh ├── config ├── delete_dependency.sh ├── delete_if_directory.sh ├── exit-status.sh ├── folder_check.sh ├── inactive_branches.sh ├── logfile ├── magic.sh ├── mail_if_more_memory.sh ├── maven.json ├── nexus.sh ├── palindrome.sh ├── password_check.sh ├── project1 │ ├── Jenkinsfile │ ├── README.md │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── in28minutes │ │ │ └── maven │ │ │ └── App.java │ │ └── test │ │ └── java │ │ └── com │ │ └── in28minutes │ │ └── maven │ │ └── AppTest.java ├── project2 │ ├── Jenkinsfile │ ├── README.md │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── in28minutes │ │ │ └── maven │ │ │ └── App.java │ │ └── test │ │ └── java │ │ └── com │ │ └── in28minutes │ │ └── maven │ │ └── AppTest.java └── project3 │ ├── Jenkinsfile │ ├── README.md │ ├── pom.xml │ └── src │ ├── main │ └── java │ │ └── com │ │ └── in28minutes │ │ └── maven │ │ └── App.java │ └── test │ └── java │ └── com │ └── in28minutes │ └── maven │ └── AppTest.java ├── string.sh ├── test ├── third.sh └── unix ├── awk └── employee.txt ├── cmp ├── file1 ├── file2 └── file3 ├── comm ├── commands.txt ├── f1 ├── f2 ├── file1.txt └── file2.txt ├── diff ├── file1 └── file2 ├── grep ├── grep.txt ├── test └── test1 ├── loops ├── break.sh ├── break_1.sh ├── case.sh ├── continue.sh ├── elif.sh ├── for.sh ├── for1.sh ├── if.sh ├── if_else.sh ├── infinite.sh └── while.sh ├── more └── logfilr ├── sed └── test.txt ├── sort ├── file.txt ├── file2-u.txt └── test.txt ├── tr └── test └── uniq └── file1 /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/README.md -------------------------------------------------------------------------------- /directory.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/directory.sh -------------------------------------------------------------------------------- /file_permission.sh: -------------------------------------------------------------------------------- 1 | if [ -e $1 ]; then 2 | echo "file is present" 3 | fi 4 | -------------------------------------------------------------------------------- /first.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/first.sh -------------------------------------------------------------------------------- /restart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/restart.sh -------------------------------------------------------------------------------- /second.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/second.sh -------------------------------------------------------------------------------- /shell_scripts/Identify_position_of_parameter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/shell_scripts/Identify_position_of_parameter.sh -------------------------------------------------------------------------------- /shell_scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/shell_scripts/README.md -------------------------------------------------------------------------------- /shell_scripts/application_properties.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/shell_scripts/application_properties.sh -------------------------------------------------------------------------------- /shell_scripts/arguments.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/shell_scripts/arguments.sh -------------------------------------------------------------------------------- /shell_scripts/config: -------------------------------------------------------------------------------- 1 | nam="Mark" 2 | sur="Brown" 3 | -------------------------------------------------------------------------------- /shell_scripts/delete_dependency.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/shell_scripts/delete_dependency.sh -------------------------------------------------------------------------------- /shell_scripts/delete_if_directory.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/shell_scripts/delete_if_directory.sh -------------------------------------------------------------------------------- /shell_scripts/exit-status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/shell_scripts/exit-status.sh -------------------------------------------------------------------------------- /shell_scripts/folder_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/shell_scripts/folder_check.sh -------------------------------------------------------------------------------- /shell_scripts/inactive_branches.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/shell_scripts/inactive_branches.sh -------------------------------------------------------------------------------- /shell_scripts/logfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/shell_scripts/logfile -------------------------------------------------------------------------------- /shell_scripts/magic.sh: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | echo "This is from $0" 3 | -------------------------------------------------------------------------------- /shell_scripts/mail_if_more_memory.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/shell_scripts/mail_if_more_memory.sh -------------------------------------------------------------------------------- /shell_scripts/maven.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/shell_scripts/maven.json -------------------------------------------------------------------------------- /shell_scripts/nexus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/shell_scripts/nexus.sh -------------------------------------------------------------------------------- /shell_scripts/palindrome.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/shell_scripts/palindrome.sh -------------------------------------------------------------------------------- /shell_scripts/password_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/shell_scripts/password_check.sh -------------------------------------------------------------------------------- /shell_scripts/project1/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/shell_scripts/project1/Jenkinsfile -------------------------------------------------------------------------------- /shell_scripts/project1/README.md: -------------------------------------------------------------------------------- 1 | This is to test commit based job 2 | -------------------------------------------------------------------------------- /shell_scripts/project1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/shell_scripts/project1/pom.xml -------------------------------------------------------------------------------- /shell_scripts/project1/src/main/java/com/in28minutes/maven/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/shell_scripts/project1/src/main/java/com/in28minutes/maven/App.java -------------------------------------------------------------------------------- /shell_scripts/project1/src/test/java/com/in28minutes/maven/AppTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/shell_scripts/project1/src/test/java/com/in28minutes/maven/AppTest.java -------------------------------------------------------------------------------- /shell_scripts/project2/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/shell_scripts/project2/Jenkinsfile -------------------------------------------------------------------------------- /shell_scripts/project2/README.md: -------------------------------------------------------------------------------- 1 | This is to test commit based job 2 | -------------------------------------------------------------------------------- /shell_scripts/project2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/shell_scripts/project2/pom.xml -------------------------------------------------------------------------------- /shell_scripts/project2/src/main/java/com/in28minutes/maven/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/shell_scripts/project2/src/main/java/com/in28minutes/maven/App.java -------------------------------------------------------------------------------- /shell_scripts/project2/src/test/java/com/in28minutes/maven/AppTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/shell_scripts/project2/src/test/java/com/in28minutes/maven/AppTest.java -------------------------------------------------------------------------------- /shell_scripts/project3/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/shell_scripts/project3/Jenkinsfile -------------------------------------------------------------------------------- /shell_scripts/project3/README.md: -------------------------------------------------------------------------------- 1 | This is to test commit based job 2 | -------------------------------------------------------------------------------- /shell_scripts/project3/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/shell_scripts/project3/pom.xml -------------------------------------------------------------------------------- /shell_scripts/project3/src/main/java/com/in28minutes/maven/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/shell_scripts/project3/src/main/java/com/in28minutes/maven/App.java -------------------------------------------------------------------------------- /shell_scripts/project3/src/test/java/com/in28minutes/maven/AppTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/shell_scripts/project3/src/test/java/com/in28minutes/maven/AppTest.java -------------------------------------------------------------------------------- /string.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/string.sh -------------------------------------------------------------------------------- /test: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/third.sh -------------------------------------------------------------------------------- /unix/awk/employee.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/unix/awk/employee.txt -------------------------------------------------------------------------------- /unix/cmp/file1: -------------------------------------------------------------------------------- 1 | bengaluru 2 | kolar 3 | cmy 4 | hassana 5 | mysore 6 | mandya 7 | -------------------------------------------------------------------------------- /unix/cmp/file2: -------------------------------------------------------------------------------- 1 | bengaluru 2 | kolar 3 | cmy 4 | mysore 5 | mandya 6 | -------------------------------------------------------------------------------- /unix/cmp/file3: -------------------------------------------------------------------------------- 1 | bengaluru 2 | kolar 3 | cmy 4 | hassana 5 | mysore 6 | mandya 7 | -------------------------------------------------------------------------------- /unix/comm/commands.txt: -------------------------------------------------------------------------------- 1 | 2 | comm --nocheck-order f1 f2 3 | -------------------------------------------------------------------------------- /unix/comm/f1: -------------------------------------------------------------------------------- 1 | Prnjal 2 | Kartik 3 | -------------------------------------------------------------------------------- /unix/comm/f2: -------------------------------------------------------------------------------- 1 | Apaar 2 | Kartik 3 | -------------------------------------------------------------------------------- /unix/comm/file1.txt: -------------------------------------------------------------------------------- 1 | Apaar 2 | Ayush Rajput 3 | Deepak 4 | Hemant 5 | -------------------------------------------------------------------------------- /unix/comm/file2.txt: -------------------------------------------------------------------------------- 1 | Apaar 2 | Hemant 3 | Lucky 4 | Pranjal Thakral 5 | -------------------------------------------------------------------------------- /unix/diff/file1: -------------------------------------------------------------------------------- 1 | Ubuntu 2 | Arch Linux 3 | Debian 4 | CentOS 5 | Fedora 6 | -------------------------------------------------------------------------------- /unix/diff/file2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/unix/diff/file2 -------------------------------------------------------------------------------- /unix/grep/grep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/unix/grep/grep.txt -------------------------------------------------------------------------------- /unix/grep/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/unix/grep/test -------------------------------------------------------------------------------- /unix/grep/test1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/unix/grep/test1 -------------------------------------------------------------------------------- /unix/loops/break.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/unix/loops/break.sh -------------------------------------------------------------------------------- /unix/loops/break_1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/unix/loops/break_1.sh -------------------------------------------------------------------------------- /unix/loops/case.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/unix/loops/case.sh -------------------------------------------------------------------------------- /unix/loops/continue.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/unix/loops/continue.sh -------------------------------------------------------------------------------- /unix/loops/elif.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/unix/loops/elif.sh -------------------------------------------------------------------------------- /unix/loops/for.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/unix/loops/for.sh -------------------------------------------------------------------------------- /unix/loops/for1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/unix/loops/for1.sh -------------------------------------------------------------------------------- /unix/loops/if.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/unix/loops/if.sh -------------------------------------------------------------------------------- /unix/loops/if_else.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/unix/loops/if_else.sh -------------------------------------------------------------------------------- /unix/loops/infinite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/unix/loops/infinite.sh -------------------------------------------------------------------------------- /unix/loops/while.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/unix/loops/while.sh -------------------------------------------------------------------------------- /unix/more/logfilr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/unix/more/logfilr -------------------------------------------------------------------------------- /unix/sed/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/unix/sed/test.txt -------------------------------------------------------------------------------- /unix/sort/file.txt: -------------------------------------------------------------------------------- 1 | 50 2 | 39 3 | 15 4 | 89 5 | 2003 6 | -------------------------------------------------------------------------------- /unix/sort/file2-u.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/unix/sort/file2-u.txt -------------------------------------------------------------------------------- /unix/sort/test.txt: -------------------------------------------------------------------------------- 1 | abc 2 | apple 3 | BALL 4 | Abc 5 | bat 6 | -------------------------------------------------------------------------------- /unix/tr/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/unix/tr/test -------------------------------------------------------------------------------- /unix/uniq/file1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Unix_and_shell/HEAD/unix/uniq/file1 --------------------------------------------------------------------------------