The document discusses an older brother who wants to find a job related to investment projects but has struggled to find opportunities. He had been working in an unrelated field and was unhappy, so he decided to take an assistant job at a large company for better career development opportunities. He hopes to stay there long-term.
Nitin Dye Chem Pvt. Ltd. was established in the year 1976 and engaged in manufacturing, supplying and exporting of a quality range of Industrial Dyes, which are available in various colors and shades. The range of products we offer include Acid Dyes, Solvent Dyes, Metal Complex Dyes, Direct Dyes, Paper Dyes and many more. These products are highly appreciated for their quality, efficiency and result oriented features. We ensure these products serve the need of customers. We are exporting our quality products in Australia, USA, Pakistan, Japan, Dubai and Europe.
6. passwd, pwd, cd
? passwd : ??i m?t kh?u
? pwd : in th? m?c l¨¤m vi?c
? cd : chuy?n ??i th? m?c
cd /usr/bin
cd ../../etc
cd ~ : chuy?n ??n th? m?c home = cd
cd ~sv
cd path : chuy?n ??n th? m?c path
15. ?¨¢nh s d¨°ng ¨C nl?
? Syntax: nl [options] [files]
? b style: set l?i ki?u c?a body [t]
? f style: ki?u c?a footer [n]
? h style: ki?u c?a header [n]
? style = A, t, n ho?c p<bi?u th?c>
? Ch¨² ?: m?t trang th?ng th??ng g?m c¨¢c
ph?n header, body v¨¤ footer t??ng ?ng
v?i ::: , ::, v¨¤ :
16. od - dump file
? Syntax: od [options] [files]
? Tham s?: ¨Ct type = A, c, O, x
? L?nh kh¨¢c: hexdump
$ od -t o1 file1
00000000 141 061 012 101 061
012
00000006
$ od -t x1 file1
00000000 61 31 0a 41 31
0a
00000006
$ od -t c file1
00000000 a 1 n A 1 n
00000006
$ od -t a file1
00000000 a 1 nl A 1 nl
00000006
23. sed
? Syntax
sed [options] 'command1' [files]
sed [options] -f script [files]
sed [options] -e 'com1' [-e 'com2'...] [files]
Tham s? :
? d - delete lines.
? s - substitutions. s/pattern/replacement/[flags]
g - Replace all instances of pattern, not just the first.
n - Replace nth instance of pattern; the default is 1.
p - Print the line, used with the ¨Cn
w ¨C print to file
y - Translate characters.
24. sed (cont)
? $ sed '3,5d' file1 -x¨®a d¨°ng 3-5
? $ sed '/^#/d' file1 - x¨®a d¨°ng ch¨² th¨ªch
? $ sed 's/^$/@/' file1 - th¨ºm @ v¨¤o d¨°ng tr?ng
? $ sed 's/"//g' file1 - x¨®a d?u ¡°
? $ sed ¡®s//dev/hda1//dev/sdb3/g¡¯ file1
? $ sed ¡® /KEY/ s/:/;/g¡¯ file1
? $ sed ¨Ce ¡®/^$/ d¡¯ -e ¡®s/OLD/NEW/g¡¯ file1
? $sed -f script.txt file1 1 s/old/new/
/keyword/
s/old/new/g
23,25 d
25. xargs
? Syntax
xargs [options] [command] [initial-
arguments]
Tham s? ¨Cn maxargs
-p promt
? $ ls | xargs rm -f
? $ find / -type f | xargs -n 1 grep linux
? $ find / -type f -user 502 | xargs rm ¨Cf
? Ch¨² ? : m?t s? l?nh c¨® tham s? -exec ~ xargs
find / -type f -user 502 ¨Cexec rm ¨Cf {} ;