Various Method for Multiple Command in Single Line
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
root@kali:/var/www/html# ls;id 39166 39166.c index.html LinEnum lunar uid=0(root) gid=0(root) groups=0(root) root@kali:/var/www/html# ls&id [1] 2511 uid=0(root) gid=0(root) groups=0(root) 39166 39166.c index.html LinEnum lunar [1]+ Done ls --color=auto root@kali:/var/www/html# ls||id 39166 39166.c index.html LinEnum lunar root@kali:/var/www/html# l||id bash: l: command not found uid=0(root) gid=0(root) groups=0(root) root@kali:/var/www/html# ls&&id 39166 39166.c index.html LinEnum lunar uid=0(root) gid=0(root) groups=0(root) root@kali:/var/www/html# l&&id bash: l: command not found |