Вы находитесь на странице: 1из 4

creating a hard link for the file nd testing:

1.whether deleting the original file affect the link ?

2.whether modying the original file affect the link?

3.whether modyfying the content of the original file affect the link?

Performing various functions on the softlink:


1.Whether changing the content og the original file change the content of
soft link too

2.whether modying the original file affect the link?

3.whether modyfying the content of the original file affect the link?

Scripting:
#!/bin/bash
name="john"
days=10;
echo "$name checked in $days ago"

Command substituting using backtick


#!/bin/bash
x=`date`
echo "date is: $x"

Command substituting using dollar and braces


#!/bin/bash
x=$(date)
echo "date is: $x"

Adding two n umbers in script

#!/bin/bash
v1=10
v2=20
res=`expr $v1 + $v2`
echo $v1
echo $v2
echo $res

Вам также может понравиться