-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsimple ssh script.sh
62 lines (55 loc) · 2.18 KB
/
simple ssh script.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#this is a script to ssh to multiple hosts and perform an action
#!/bin/bash
hosts=(hostname1 hostname2)
read -sp "enter password" password
for host in "${hosts[@]}";
do
sshpass -p $password ssh username@$host 'hostname;ulimit -n;exit;'>>/home/hary/obul.txt
done
---------------------------------------------------------------------------------------
method 2
-------------
pdsh -R ssh -w ^nodes 'cd /home/hary;ls -ltrh|grep try;exit;'>>/home/hary/obul.txt
---------------------------------------------------------
method 3
----------------------------------------------------------
ssh username@$host <<-EOF
cd $HOME;
echo hostname;
command 2;
command 3;
EOF
----------------------------------------------------------
method4
----------------------------------------------------------
$cat del.sh
filename=(`cat querries.txt`)
for each in "${filename[@]}"
do
echo "$each"
done
────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
$sh del.sh
q
w
e
r
t
y
u
i
op
p
────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
$cat querries.txt
q
w
e
r
t
y
u
i
op
p
─────────────────────────