|
@ -69,6 +69,7 @@ NOTE: This can be interpreted as + |
|
|
|
|
|
|
|
|
TIP: Very powerful in bash scripts |
|
|
TIP: Very powerful in bash scripts |
|
|
create a file test.sh |
|
|
create a file test.sh |
|
|
|
|
|
|
|
|
.bash script |
|
|
.bash script |
|
|
[source,bash] |
|
|
[source,bash] |
|
|
---- |
|
|
---- |
|
@ -76,7 +77,8 @@ create a file test.sh |
|
|
STRING=$(find /etc -name "*.conf" -exec grep -Hns "conf" {} \;) |
|
|
STRING=$(find /etc -name "*.conf" -exec grep -Hns "conf" {} \;) |
|
|
echo $STRING |
|
|
echo $STRING |
|
|
---- |
|
|
---- |
|
|
exec it |
|
|
exec it |
|
|
|
|
|
|
|
|
.bash script |
|
|
.bash script |
|
|
[source,bash] |
|
|
[source,bash] |
|
|
---- |
|
|
---- |
|
|