forked from cfgnunes/nautilus-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGit init
executable file
·38 lines (27 loc) · 929 Bytes
/
Git init
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/env bash
# Source the script 'common-functions.sh'.
SCRIPT_DIR=$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &>/dev/null && pwd)
ROOT_DIR=$(grep --only-matching "^.*scripts[^/]*" <<<"$SCRIPT_DIR")
source "$ROOT_DIR/common-functions.sh"
_main() {
local input_files=""
local output_dir=""
# Execute initial checks.
_check_dependencies "command=git"
_display_wait_box "2"
input_files=$(_get_files "par_type=directory; par_get_pwd=true")
# Execute the function '_main_task' for each file in parallel.
_run_task_parallel "$input_files" "$output_dir"
_display_result_box ""
}
_main_task() {
local input_file=$1
local output_dir=$2
local std_output=""
_directory_push "$input_file" || return 1
# Run the main process.
std_output=$(git init 2>&1)
_check_output "$?" "$std_output" "$input_file" "" || return 1
_directory_pop || return 1
}
_main "$@"