-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfilemanipulation.bash
47 lines (38 loc) · 917 Bytes
/
filemanipulation.bash
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
39
40
41
42
43
44
45
46
47
## File manipulation
# Replaces specified text in a file with new text.
replaceInFile() {
local file="$1"
local search="$2"
local replace="$3"
sed -i "s/${search}/${replace}/g" "$file"
}
# Checks to see if a file exists
fileExists() {
local file_path=$1
[[ -f "$file_path" ]]
}
# Checks to see if a directory exists
directoryExists() {
local dir_path=$1
[[ -d "$dir_path" ]]
}
# Extracts a column from a .csv file
extractColumn() {
local file="$1"
local column="$2"
awk -F ',' "{print \$$column}" "$file"
}
# Filters lines of a file by a pattern
filterLines() {
local file=$1
local pattern=$2
local separator=$3
if [ "$separator" = "newline" ]; then
separator='\n' # Set separator to \n for "newline" option
fi
local filtered_lines=""
while IFS= read -r line; do
filtered_lines+="$line$separator"
done < <(grep "$pattern" "$file")
echo -n "$filtered_lines"
}