What's new

Tutorial Simple Bash Scripting Tricks #1

PHC-TheGlock

Forum Master
Elite
Joined
Oct 10, 2018
Posts
3,290
Solutions
9
Reaction
37,825
Points
4,497

Hello, I'm kinda bored also no one about bash scripting here. so yeah. Lets Start...

How to get rid of all Tabs/or all unwanted space on a string?



Input File:
foo.txt
Bash:
          foo
    foo
Run:
Code:
 sed -i 's|[[:blank:]]||g' foo.txt
Explanation:
^
stands for matching position just before the first character of the string which is basically a Regular Expression (Regex)
[[:blank:]] is basicaly a Bracket expression that aim for blank spaces and tab
"s|" & "|g" purpose of these two is to search for words or expressions (regex) and replace it...
ex. 's|oldword|newword|g'... in this case we want to delete all blanks so i leave it blank to delete it.
-i is to edit files in place..

Output:
Bash:
 foo
 foo

How to get the content on a specific line in file



Input File:
bar.txt
Bash:
1 Lmao
2 Lol
3 Foo
4 Bar
5 Alex
6 Steve
7 Juan
8 Erick
Run:
Code:
sed -n '4'p bar.txt
Explanation:
-n
stands for automatic supress printing of pattern space
'<line number>' this is where you put the line number
p is to print the specific line you put.

Alternative Method:
Using AWK:
Code:
awk 'NR== 4' bar.txt
Explanation:
NR
refers to the total record number, This is the number of input records (based on AWK's Man)
== is comparison operator which is commonly used in Conditions like (If, While, For, etc.)
4 yep its so obvious right?..

Output:
Bash:
Bar

So that's pretty much it, also i will create more threads about bash scripting.. Mag request lang kayo kung ano gusto nyo, kahit medyo complex payan OK lng.

Hope it helps :>

- PHC-TheGlock
 
Oo nga e.. mukang di masyado patok Bash Scripting dito sa PHC.
HAHAHAHA
sa ibang bagay kase sila naka focus hehehe, yung mga mahihilig lang talaga sa ganito o may interest ang makakapansin nito food for my brain na rin to kase for me hahaha, kagaya noong isa mong thread salamat ulit maya ko basahin ❤️
 
sa ibang bagay kase sila naka focus hehehe, yung mga mahihilig lang talaga sa ganito o may interest ang makakapansin nito food for my brain na rin to kase for me hahaha, kagaya noong isa mong thread salamat ulit maya ko basahin ❤️
Aight, Thanks.
Di na din kasi masyado active si BonChan dito... láρág din ako ng mga knowledge ko dito sa PHC para kahit papaano may ambag
 
Back
Top