Added everything from Neumann
This commit is contained in:
4
20231113/BASH/asd.txt
Normal file
4
20231113/BASH/asd.txt
Normal file
@@ -0,0 +1,4 @@
|
||||
asd
|
||||
dsa
|
||||
asd
|
||||
dsa
|
||||
15
20231113/BASH/first.sh
Normal file
15
20231113/BASH/first.sh
Normal file
@@ -0,0 +1,15 @@
|
||||
#! /bin/bash
|
||||
|
||||
country=Pakistan
|
||||
same_country=$country
|
||||
|
||||
echo $country
|
||||
echo $same_country
|
||||
|
||||
echo "Today is " `date`
|
||||
|
||||
echo -e "\nenter the path to directory"
|
||||
read the_path
|
||||
|
||||
echo -e "\nyour path has the followingfiles and folders: "
|
||||
ls $the_path
|
||||
6
20231113/BASH/second.sh
Normal file
6
20231113/BASH/second.sh
Normal file
@@ -0,0 +1,6 @@
|
||||
#! /bin/bash
|
||||
|
||||
while read line
|
||||
do
|
||||
echo $line
|
||||
done < asd.txt
|
||||
Reference in New Issue
Block a user