From 9d3cc214173a8d563a054e1b96211f8fc2ebf081 Mon Sep 17 00:00:00 2001 From: Vladyslav Paliichuk <150328388+kocmoc777@users.noreply.github.com> Date: Fri, 17 Apr 2026 21:51:02 +0300 Subject: [PATCH 1/3] Create CODEOWNERS --- .github/CODEOWNERS | 1 + 1 file changed, 1 insertion(+) create mode 100644 .github/CODEOWNERS diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..c9686c6 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1 @@ +@softservedata From 04df7790aea4d23f784fdaa1518a80f536795c4e Mon Sep 17 00:00:00 2001 From: Vladyslav Paliichuk <150328388+kocmoc777@users.noreply.github.com> Date: Fri, 24 Apr 2026 19:05:26 +0300 Subject: [PATCH 2/3] Add files via upload --- .github/pull_request_template.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .github/pull_request_template.md diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..378b862 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,9 @@ +## Describe your changes + +## Issue ticket number and link + +## Checklist before requesting a review +- [ ] I have performed a self-review of my code +- [ ] If it is a core feature, I have added thorough tests +- [ ] Do we need to implement analytics? +- [ ] Will this be part of a product update? If yes, please write one phrase about this update From e52bf4a8070be80a668dc6ee31f913569056bbb4 Mon Sep 17 00:00:00 2001 From: Vladyslav Paliichuk <150328388+kocmoc777@users.noreply.github.com> Date: Tue, 5 May 2026 17:02:32 +0300 Subject: [PATCH 3/3] Add script to list users with bash shell --- OS.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 OS.sh diff --git a/OS.sh b/OS.sh new file mode 100644 index 0000000..f8ad3d0 --- /dev/null +++ b/OS.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +INPUT="password" + +while IFS=: read -r user pass uid gid info home shell +do + if [[ "$shell" == "/bin/bash" ]]; then + echo "$user" + fi +done < "$INPUT"