0% found this document useful (0 votes)
14 views18 pages

CMD 28 12 2024

Uploaded by

Manish
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
14 views18 pages

CMD 28 12 2024

Uploaded by

Manish
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 18

1011 cls

1012 vi .bashrc
1013 cd Shellscript/
1014 ls
1015 tr -s " " "|" < pract
1016 cat pract
1017 tr -s " " "|" < pract
1018 tr -d "0-9" < pract
1019 tr -dc "0-9" < pract
1020 tr "a-z" "A-Z" < pract
1021 history | tail -n 10
1022 tr -dc "A-Za-z \n" < pract
1023 vi Test.java
1024 javac Test.java
1025 java Test
1026 vi Test.java
1027 javac Test.java
1028 java Test
1029 vi Test.java
1030 javac Test.java
1031 java Test
1032 vi Test.java
1033 javac Test.java
1034 java Test
1035 vi Test.java
1036 javac Test.java
1037 java Test
1038 javac Test.java
1039 vi Test.java
1040 javac Test.java
1041 tr -dc "A-Za-z \n" < pract
1042 tr -dc "A-Za-z \012" < pract
1043 set
1044 set | more
1045 history | tail -n 10
1046 wc pract
1047 cat pract
1048 wc -l pract
1049 wc -w pract
1050 wc -c pract
1051 man grep
1052 man grep > grepfile
1053 cat grepfile
1054 grep -e "prototypes" < grepfile
1055 grep -e "and prototypes" < grepfile
1056 grep -e "the" < grepfile
1057 grep -e -c "the" < grepfile
1058 grep -vc "the" < grepfile
1059 grep -n "the" < grepfile
1060 history | tail -n 10
1061 grep . < grepfile
1062 grep "." < grepfile
1063 grep \.$ < grepfile
1064 grep .$ < grepfile
1065 grep . < grepfile
1066 grep "for" < grepfile
1067 cat grepfile
1068 grep . grepfile
1069 cat grepfile
1070 grep . grepfile
1071 vi names.txt
1072 history
1073 vi names.txt
1074 sort names.txt
1075 vi names.txt
1076 sort names.txt
1077 vi names.txt
1078 uniq names.txt
1079 sort names.txt
1080 sort names.txt > sortednames.txt
1081 cat sortednames.txt
1082 uniq sortednames.txt
1083 sort names.txt
1084 cat names.txt
1085 sort names.txt > sortednames.txt
1086 cat sortednames.txt
1087 uniq sortednames.txt
1088 uniq sortednames.txt > uniqnames.txt
1089 cat uniqnames.txt
1090 ls
1091 cat grepfile \
1092 cd Shellscript/
1093 ls
1094 cat grepfile
1095 grep ".$" < grepfile
1096 ls
1097 cat grepfile
1098 tr "a-z" "A-Z" < grepfile
1099 tr "a-z" "A-Z" < grepfile > g1
1100 cat g1
1101 tr -dc "A-Z \012" < g1
1102 tr -dc "A-Z \012" < g1 > g2
1103 cat g2
1104 tr " " "\012" < g2
1105 tr " " "\012" < g2 > g3
1106 grep . < g3
1107 grep . < g3 > g4
1108 grep ^...$ < g4
1109 grep ^...$ < g4 > g5
1110 sort g5
1111 sort g5 > g6
1112 uniq g6
1113 uniq g6 > g7
1114 ls g*
1115 cat grepfile
1116 history | tail -n 15
1117 cat grepfile | tr "a-z" "A-Z"
1118 history | tail -n 15
1119 cat grepfile | tr "a-z" "A-Z" | tr " "
1120 cat grepfile | tr "a-z" "A-Z" | tr " " "\012"
1121 cat grepfile | tr "a-z" "A-Z" | tr " " "\012" | grep .
1122 cat grepfile | tr "a-z" "A-Z" | tr " " "\012" | grep . | grep ^...$
1123 cat grepfile | tr "a-z" "A-Z" | tr " " "\012" | grep . | grep ^...$ | sort
1124 cat grepfile | tr "a-z" "A-Z" | tr " " "\012" | grep . | grep ^...$ | sort |
uniq
1125 cat grepfile | tr "a-z" "A-Z" | tr " " "\012" | tr -dc "A-Z\012"
1126 cat grepfile | tr "a-z" "A-Z" | tr " " "\012" | tr -dc "A-Z\012" | grep .
1127 cat grepfile | tr "a-z" "A-Z" | tr " " "\012" | tr -dc "A-Z\012" | grep . |
grep ^...$
1128 cat grepfile | tr "a-z" "A-Z" | tr " " "\012" | tr -dc "A-Z\012" | grep . |
grep ^...$ | sort
1129 cat grepfile | tr "a-z" "A-Z" | tr " " "\012" | tr -dc "A-Z\012" | grep . |
grep ^...$ | sort | uniq
1130 cat grepfile | tr "a-z" "A-Z" | tr " " "\012" | tr -dc "A-Z\012" | grep . |
grep ^...$ | sort | uniq > finalfile
1131 cat finalfile
1132 cat grepfile | tr "a-z" "A-Z" | tr " " "\012" | tr -dc "A-Z\012" | grep . |
grep ^...$ | sort | uniq | tee finalfile
1133 ll
1134 ls /dev
1135 ll /dev
1136 ll
1137 umask
1138 x = 7
1139 cats -m
1140 x=7
1141 y=9
1142 int y=9
1143 y=9
1144 PATH
1145 echo PATH
1146 echo $PATH
1147 echo x
1148 echo y
1149 echo $y
1150 echo $x
1151 date
1152 name=Akash
1153 echo $name
1154 dt=date
1155 echo $dt
1156 dt=`date`
1157 echo $dt
1158 ls
1159 cat uniqnames.txt
1160 varfile=cat uniqnames.txt
1161 varfile=`cat uniqnames.txt`
1162 echo $varfile
1163 echo $x
1164 echo $y
1165 z=x+y
1166 echo $z
1167 z=$x+$y
1168 echo $z
1169 expr $x+$y
1170 expr $x + $y
1171 z=expr $x + $y
1172 z=`expr $x + $y`
1173 echo $z
1174 z=`expr $x * $y`
1175 z=`expr $x \* $y`
1176 echo $z
1177 a=9.2
1178 b=4.5
1179 c=`expr $a + $b`
1180 bc
1181 4.0 + 2.0
1182 echo $a + $b
1183 echo $a + $b > temp
1184 cat temp
1185 bc < temp
1186 c=`bc < temp`
1187 echo $c
1188 echo $a + $b
1189 echo $a + $b | bc
1190 c=`echo $a + $b | bc`
1191 echo $c
1192 vi hello.sh
1193 python
1194 vi hello.sh
1195 chmod +x hello.sh
1196 ./hello.sh
1197 cat hello.sh
1198 mkdir src
1199 cp *.sh src
1200 cd src/
1201 ls
1202 vi iotest.sh
1203 chmod +x iotest.sh
1204 ./iotest.sh
1205 vi iotest.sh
1206 ./iotest.sh
1207 vi iotest.sh
1208 echo $$
1209 vi iotest.sh
1210 ./iotest.sh
1211 vi iotest.sh
1212 ./iotest.sh
1213 vi iotest.sh
1214 ./iotest.sh
1215 vi iotest.sh
1216 ./iotest.sh
1217 vi iotest.sh
1218 ./iotest.sh
1219 vi iotest.sh
1220 ./iotest.sh
1221 vi iotest.sh
1222 ./iotest.sh
1223 vi iotest.sh
1224 vi iftest.sh
1225 ls
1226 chmod +x iftest.sh
1227 ./iftest.sh
1228 ls
1229 vi iftest.sh
1230 rm 0
1231 ls
1232 vi iftest.sh
1233 ls
1234 ./iftest.sh
1235 ls
1236 vi iftest.sh
1237 ./iftest.sh
1238 vi iftest.sh
1239 ls
1240 vi iftest.sh
1241 vi switchcasetest.sh
1242 chmod +x switchcasetest.sh
1243 ./switchcasetest.sh
1244 vi switchcasetest.sh
1245 ./switchcasetest.sh
1246 vi switchcasetest.sh
1247 ./switchcasetest.sh
1248 vi switchcasetest.sh
1249 ./switchcasetest.sh
1250 vi switchcasetest.sh
1251 chmod +x switchcasetest.sh
1252 ./switchcasetest.sh
1253 vi switchcasetest.sh
1254 ./switchcasetest.sh
1255 vi switchcasetest.sh
1256 ./switchcasetest.sh
1257 vi switchcasetest.sh
1258 ls switchcasetest.sh
1259 echo $?
1260 ls switchcasetestfile.sh
1261 echo $?
1262 vi switchcasetest.sh
1263 ./switchcasetest.sh
1264 echo $?
1265 ./switchcasetest.sh
1266 echo $?
1267 vi switchcasetest.sh
1268 ./switchcasetest.sh
1269 vi switchcasetest.sh
1270 ./switchcasetest.sh
1271 vi switchcasetest.sh
1272 vi looptest.sh
1273 chmod +x looptest.sh
1274 vi looptest.sh
1275 chmod +x looptest.sh
1276 ./looptest.sh
1277 vi looptest.sh
1278 ./looptest.sh
1279 vi looptest.sh
1280 ls
1281 ll
1282 ll | cut -c1
1283 ll | cut -c2
1284 ll | cut -c2-4
1285 ll switchcasetest.sh | cut -c2-4
1286 ll hello.sh | cut -c2-4
1287 touch newfile
1288 ll newfile | cut -c2-4
1289 cc
1290 cp
1291 vi filepermission.sh
1292 chmod +x filepermission.sh
1293 ./filepermission.sh
1294 ./filepermission.sh 1 2 3
1295 ./filepermission.sh 1 2
1296 ./filepermission.sh switchcasetest.sh
1297 ./filepermission.sh
1298 ./filepermission.sh
1299 vi filepermission.sh
1300 ./filepermission.sh
1301 ./filepermission.sh switchcasetest.sh
1302 vi filepermission.sh
1303 ./filepermission.sh
1304 ./filepermission.sh hello.sh
1305 vi filepermission.sh
1306 ./filepermission.sh
1307 ./filepermission.sh hello.sh
1308 ./filepermission.sh bye.sh
1309 vi filepermission.sh
1310 ll hello.sh
1311 vi filepermission.sh
1312 ./filepermission.sh bye.sh
1313 ./filepermission.sh hello.sh
1314 ll
1315 vi filepermission.sh
1316 ./filepermission.sh hello.sh
1317 ./filepermission.sh newfile
1318 vi filepermission.sh
1319 ls -l hello.sh
1320 vi filepermission.sh
1321 ./filepermission.sh
1322 ./filepermission.sh bye.sh
1323 ./filepermission.sh hello.sh
1324 ./filepermission.sh newfile
1325 vi filepermission.sh
1326 history > cmd-07-12-2024.txt
1327 history
1328 cd Shellscript/
1329 file second
1330 ls
1331 echo $PATH
1332 ls
1333 mkdir Akash
1334 history
1335 mkdir Akash
1336 cd Akash/
1337 dir
1338 ls
1339 touch data
1340 ls
1341 ls-l
1342 ls -l
1343 list
1344 listfile
1345 ls
1346 listfile
1347 /bin/ls
1348 /usr/bin/ls
1349 ls
1350 /usr/bin/ls
1351 /bin/ls
1352 echo $PATH
1353 echo $PATH | less
1354 /bin/ls
1355 ls
1356 echo $PATH > path.txt
1357 vi path.txt
1358 /bin/ls
1359 ls
1360 cal
1361 ps
1362 date
1363 ls -l
1364 rm path.txt
1365 ls -l
1366 touch a b c
1367 ls
1368 touch A
1369 ls
1370 touch hello.java HELLO.java
1371 ls
1372 ls -l
1373 man ls
1374 ls -i
1375 cp /bin/???? .
1376 ls
1377 ls col2
1378 ls c
1379 ls c*
1380 ls c* b* g*
1381 ls [cbg]*
1382 ls [!cbg]*
1383 ls ?i*
1384 ls
1385 mkdir Test
1386 cd Test/
1387 mkdir Practice
1388 ls
1389 pwd
1390 cd..
1391 cd ..
1392 ls
1393 ls -R
1394 rmdir Test/
1395 rm -r Test/
1396 ls -R Organisation
1397 mkdir Organisation
1398 cd Organisation/
1399 mkdir Admin
1400 cd Admin/
1401 mkdir Payroll
1402 cd ..
1403 mkdir Network
1404 cd ..
1405 rmdir Organisation/
1406 rm -r Organisation/
1407 ls
1408 mkdir Organisation Organisatio/Admin Organisation/Admin/Payroll
Oraganisation/Network Organisation/Network/IT
1409 rm -r Organisation/
1410 mkdir Organisation Organisation/Admin Organisation/Admin/Payroll
Oraganisation/Network Organisation/Network/IT
1411 rm -r Organisation/
1412 mkdir Organisation Organisation/Admin Organisation/Admin/Payroll
Organisation/Network Organisation/Network/IT
1413 rm -r Organisation/
1414 mkdir Organisation Organisation/Admin/Payroll Organisation/Network/IT
1415 rm -r Organisation/
1416 mkdir -p Organisation Organisation/Admin/Payroll Organisation/Network/IT
1417 ls -R Organisation/
1418 rm -r Organisation/
1419 mkdir -p Organisation Organisation/Admin/Payroll Organisation/Network/IT
1420 ls
1421 vi Hello.java
1422 ls
1423 vi Hello.java
1424 ls
1425 cp Hello.java hello.cs
1426 vi hello.cs
1427 ls
1428 mv Hello.java HelloWorld.java
1429 ls
1430 man ls
1431 man ls > listfile
1432 vi listfile
1433 cat listfile
1434 clear
1435 ls
1436 cat listfile
1437 cat
1438 ls
1439 cat > first
1440 ls
1441 cat < first
1442 history | tail -n 10
1443 cat > first
1444 cat first
1445 cat > second
1446 cat first
1447 cat second
1448 cat < first < second
1449 cat first second
1450 cat first
1451 ll first
1452 cat < first > first
1453 ll first
1454 cat second
1455 cat < second >> second
1456 cat < second > third
1457 cat second third
1458 cat < third >> second
1459 cat second
1460 rm third
1461 ls
1462 cat second
1463 ls
1464 cat > first
1465 cd Akash/
1466 ls
1467 cat first
1468 cat second
1469 cat first second
1470 ls third
1471 cat first second third
1472 cat first second third 2> errorlog.txt
1473 cat errorlog.txt
1474 cat first second fourth 2> errorlog.txt
1475 cat errorlog.txt
1476 cat first second fifth 2>> errorlog.txt
1477 cat first second tenth 2>> errorlog.txt
1478 cat first second hundredth 2>> errorlog.txt
1479 cat errorlog.txt
1480 cat first fifth 2>> errorlog.txt
1481 man grepfile
1482 man grep
1483 man > grepfile
1484 man grep > grepfile
1485 cat grepfile
1486 grep matches grepfile
1487 cat grepfile
1488 grep pattern grepfile
1489 grep searching grepfile
1490 grep -n searching grepfile
1491 wc grepfile
1492 wc -l grepfile
1493 wc -c grepfile
1494 wc -w grepfile
1495 grep -v searching grepfile
1496 grep -cv searching grepfile
1497 grep -cv -e "searching pattern" grepfile
1498 grep -e "searching pattern" grepfile
1499 ls
1500 tr
1501 tr abc xyz
1502 ls -l
1503 ls
1504 clear
1505 ls
1506 cls
1507 alias cls=clear
1508 ls
1509 cls
1510 exit
1511 cd Akash/
1512 LS
1513 ls
1514 cls
1515 who
1516 who am i
1517 w
1518 echo $HOME
1519 echo ~
1520 cd /home/cdac/
1521 cd Akash/
1522 cd $HOME
1523 cd Akash/
1524 cd ~
1525 cd Akash/
1526 cd
1527 cd Akash/
1528 mkdir source
1529 cd source/
1530 ls -l
1531 touch a
1532 ls -l
1533 ll
1534 cd
1535 ls -a
1536 vi Account.java
1537 vi .bashrc
1538 cls
1539 exit
1540 cd Akash/source/
1541 ls
1542 cls
1543 exit
1544 ll
1545 cd Akash/source/
1546 ls
1547 ll
1548 cls
1549 history > cmd-29-06-2024.txt
1550 vi cmd-29-06-2024.txt
1551 ls
1552 cd Akash/source/
1553 ls
1554 tr abc xyz
1555 ll
1556 ll > pract
1557 cat pract
1558 tr " " "|" < pract
1559 tr -s " " "|" < pract
1560 tr " " "|" < pract
1561 tr "a-z" "A-Z" < pract
1562 tr -s " " "|" < pract
1563 tr "a-z" "A-Z" < pract
1564 tr -d "a-z" < pract
1565 tr -dc "a-z" < pract
1566 tr -dc "a-zA-Z0-9\n" < pract
1567 tr -dc "a-z A-Z0-9\n" < pract
1568 history | tail -n 10
1569 cd ..
1570 vi HelloWorld.java
1571 javac HelloWorld.java
1572 java Hello
1573 vi HelloWorld.java
1574 javac HelloWorld.java
1575 java Hello
1576 vi HelloWorld.java
1577 javac HelloWorld.java
1578 java Hello
1579 vi HelloWorld.java
1580 javac HelloWorld.java
1581 java Hello
1582 vi HelloWorld.java
1583 javac HelloWorld.java
1584 java Hello
1585 vi HelloWorld.java
1586 javac HelloWorld.java
1587 java Hello
1588 vi HelloWorld.java
1589 cd source/
1590 tr -dc "a-z A-Z0-9\012" < pract
1591 tr -dc "a-z A-Z0-9\01234" < pract
1592 tr -dc "a-z A-Z0-9\012" < pract
1593 ll
1594 cd ..
1595 cd source/
1596 cd ..
1597 chmod -x source/
1598 cd source/
1599 chmod +x source/
1600 cd source/
1601 ll
1602 chmod u+x pract
1603 ll pract
1604 chmod u+x,g+w,o+w pract
1605 ll pract
1606 chmod u+x,g+w,o-r pract
1607 ll pract
1608 chmod u=rwx,g=rw,o=r pract
1609 ll pract
1610 chmod 777 pract
1611 ll pract
1612 chmod 766 pract
1613 ll pract
1614 ll > pract
1615 l
1616 touch newfile
1617 ll newfile
1618 mkdir Test
1619 ll
1620 umask
1621 umask 002
1622 umask
1623 mkdir SomeDir
1624 ll
1625 touch nowcretfile
1626 ll nowcretfile
1627 umask 200
1628 mkdir CDAC
1629 ll
1630 touch cdfile
1631 ll cdfile
1632 ll
1633 chown root newfile
1634 sudo chown root newfile
1635 ll newfile
1636 chgrp root newfile
1637 sudo chgrp root newfile
1638 ll newfile
1639 pwd
1640 ls
1641 cd /
1642 ls
1643 ps
1644 ps -e
1645 tty
1646 cd proc/
1647 ls
1648 cd /proc/
1649 ls
1650 cd ..
1651 ls
1652 cd boot/
1653 ls
1654 cd ..
1655 cd home/cdac/Akash/source/
1656 ls
1657 ps
1658 ls
1659 date
1660 cal
1661 vi mycmd
1662 ./mycmd
1663 ll mycmd
1664 umask 002
1665 ll mycmd
1666 chmod +x mycmd
1667 ll mycmd
1668 ./mycmd
1669 PATH=$PATH:.
1670 mycmd
1671 crontab -e
1672 date
1673 crontab -e
1674 ls /tmp/
1675 crontab -e
1676 ls /dev/net
1677 sudo /etc/init.d/cron
1678 ls /dev/net
1679 ls
1680 name = Akash
1681 ls-l
1682 ls -l
1683 name = Akash
1684 name=Akash
1685 ps
1686 sh
1687 name=Akash
1688 echo name
1689 echo $name
1690 sh
1691 export name
1692 sh
1693 ls
1694 a=5
1695 b=2
1696 echo $a $b
1697 date
1698 dt=date
1699 echo $dt
1700 dt=date
1701 name=Akash
1702 echo $name $dt
1703 dt=`date`
1704 echo $dt
1705 vi names.txt
1706 cat names.txt
1707 namesdata=cat names.txt
1708 namesdata=`cat names.txt`
1709 echo $namesdata
1710 echo $a + $b
1711 c=$a+$b
1712 echo $c
1713 c=`expr $a+$b`
1714 echo $c
1715 c=`expr $a + $b`
1716 echo $c
1717 c=`expr $a * $b`
1718 c=`expr $a \* $b`
1719 echo $c
1720 x=2.5
1721 y=4.2
1722 z=`expr $x + $y`
1723 cat names.txt
1724 sort names.txt
1725 vi names.txt
1726 sort names.txt
1727 uniq names.txt
1728 cat names.txt
1729 sort names.txt > sorteddata.txt
1730 cat sorteddata.txt
1731 uniq sorteddata.txt
1732 rm sorteddata.txt
1733 cat names.txt
1734 cat names.txt | sort
1735 cat names.txt | sort | uniq
1736 expr $x + $y
1737 bc
1738 z = $x + $y
1739 bc
1740 echo $x + $y
1741 echo $x + $y > temp
1742 bc < temp
1743 bc
1744 echo $x + $y | bc
1745 z=`echo $x + $y | bc`
1746 echo $z
1747 vi hello.sh
1748 ./hello.sh
1749 ll hello.sh
1750 chmod +x hello.sh
1751 ./hello.sh
1752 vi hello.sh
1753 whereis python
1754 python
1755 python3
1756 ls /usr/bin/python3
1757 ls /usr/bin/python4
1758 ls /usr/bin/python3
1759 /usr/bin/python3
1760 vi hello.sh
1761 vi pythonhello.sh
1762 chmod +x pythonhello.sh
1763 ./pythonhello.sh
1764 vi pythonhello.sh
1765 ./pythonhello.sh
1766 vi pythonhello.sh
1767 vi hello.sh
1768 ./hello.sh
1769 vi hello.sh
1770 ls
1771 ls hello.sh
1772 echo $?
1773 ls hellobye.sh
1774 echo $?
1775 ./hello.sh
1776 echo $?
1777 vi hello.sh
1778 vi iotest.sh
1779 chmod +x iotest.sh
1780 ./iotest.sh
1781 vi iotest.sh
1782 ./iotest.sh
1783 vi iotest.sh
1784 ./iotest.sh
1785 vi iotest.sh
1786 vi iotest.sh
1787 ./iotest.sh
1788 vi iotest.sh
1789 ./iotest.sh
1790 vi iotest.sh
1791 ./iotest.sh
1792 vi iotest.sh
1793 ./iotest.sh
1794 vi iotest.sh
1795 ./iotest.sh
1796 vi iotest.sh
1797 ./iotest.sh
1798 vi iotest.sh
1799 cp iotest.sh iftest.sh
1800 vi iftest.sh
1801 iftest.sh
1802 vi iftest.sh
1803 iftest.sh
1804 vi iftest.sh
1805 iftest.sh
1806 vi iftest.sh
1807 vi switchcasetest.sh
1808 chmod +x switchcasetest.sh
1809 ./switchcasetest.sh
1810 vi switchcasetest.sh
1811 ./switchcasetest.sh
1812 vi switchcasetest.sh
1813 switchcasetest.sh
1814 vi switchcasetest.sh
1815 switchcasetest.sh
1816 vi switchcasetest.sh
1817 switchcasetest.sh
1818 vi switchcasetest.sh
1819 vi whilelooptest.sh
1820 chmod +x whilelooptest.sh
1821 whilelooptest.sh
1822 vi whilelooptest.sh
1823 whilelooptest.sh
1824 vi whilelooptest.sh
1825 whilelooptest.sh
1826 vi whilelooptest.sh
1827 whilelooptest.sh
1828 vi whilelooptest.sh
1829 history > cmd-30-06-2024.txt
1830 vi cmd-30-06-2024.txt
1831 exit
1832 ls
1833 mkdir CDAC_AUG_2024
1834 cd CDAC_AUG_2024/
1835 ls
1836 vi hello.c
1837 cc hello.c
1838 ls
1839 objdump
1840 objdump -d a.out -M intel
1841 vi HelloW.java
1842 javac HelloW.java
1843 javap -c Test.class
1844 ls
1845 mkdir ShellScript
1846 cd ShellScript/
1847 ls
1848 man ls
1849 listfile
1850 whereis ls
1851 /usr/bin/ls
1852 ls
1853 ls /
1854 ls /usr/bin/ls
1855 /usr/bin/ls
1856 echo $PATH
1857 ls
1858 /usr/bin/ls
1859 javac
1860 set
1861 echo $PATH
1862 java
1863 ls /usr/bin | more
1864 cal
1865 /usr/bin/cal
1866 echo $PATH
1867 tty
1868 ps
1869 ps -u
1870 ps -e
1871 cp /bin/???? .
1872 ls
1873 ls -l
1874 ls -r
1875 ls -i
1876 man ls
1877 ls-l
1878 ls -l
1879 cd ..
1880 cd..
1881 cd ..
1882 cd CDAC_AUG_2024/ShellScript/
1883 ls
1884 touch abc ABC
1885 ls
1886 touch hello
1887 ls -l hello
1888 ls -l hello HELLO
1889 touch hello HELLO
1890 touch .reload
1891 ls
1892 ls -a
1893 mkdir Test
1894 ls
1895 ls -l Test/
1896 ls -l
1897 rmdir Test/
1898 ls -l
1899 mkdir Test
1900 cd Test/
1901 mkdir Practice
1902 pwd
1903 ls
1904 cd ..
1905 rmdir Test/
1906 ls HELLO
1907 rm HELLO
1908 rm -r Test/
1909 ps
1910 date
1911 cal
1912 ls -l
1913 ls
1914 cal
1915 date
1916 vi mycmd
1917 chmod +x mycmd
1918 ./mycmd
1919 mkdir MET
1920 cd MET/
1921 mkdir IIT
1922 mkdir ENGG
1923 cd ..
1924 rm -r MET/
1925 mkdir MET MET/IIT MET/ENGG MET/IIT/DAC
1926 ls -R
1927 rm -r MET/
1928 mkdir MET MET/ENGG MET/IIT/DAC
1929 rm -r MET/
1930 ls -R
1931 ls
1932 ls a
1933 ls a*
1934 ls a* b*
1935 ls a* b* p*
1936 ls [abcde]*
1937 ls
1938 ls ?i*
1939 ls [abcd]*
1940 ls
1941 ls MET/
1942 cp more MET/
1943 ls MET/
1944 rm more
1945 ls
1946 cd MET/
1947 ls
1948 rm more
1949 cd ..
1950 ls
1951 mv nano MET/
1952 ls MET/
1953 ls
1954 man 2
1955 man 2 write
1956 cat
1957 cat
1958 cat > first
1959 cat < first
1960 ls first
1961 cat > second
1962 ls first second
1963 ls - l first second
1964 ls -l first second
1965 cat first
1966 cat < first
1967 cat < second
1968 cat < first < second
1969 cat first second
1970 cat first
1971 ll first
1972 clear
1973 ll
1974 clear
1975 cls
1976 c
1977 clscr
1978 alias clscr=clear
1979 clscr
1980 ls -l
1981 ll
1982 ll first
1983 cat < first > first
1984 ll first
1985 cat first
1986 cat > first
1987 cat first
1988 cat < first
1989 cat < first > first
1990 cat > first
1991 ll first
1992 cat < first >> first
1993 cat < first
1994 cat first second \
1995 cd CDAC_AUG_2024/
1996 cd ShellScript/
1997 ls
1998 cat first second
1999 cat first second third
2000 ls
2001 cp first /usr/lib
2002 cat first second third 2> errlog
2003 cat errlog
2004 cat first second fourth
2005 cat first second fourth 2> errlog
2006 cat errlog
2007 cat first second third 2>> errlog
2008 cat errlog
2009 history
2010 history > cmd-28-12-2024.txt

You might also like