Most of you use Microsoft Word pretty frequently in your day-to-day work.So, assuming those assumptions are correct, I’d like to help you improve your productivity by sharing the most useful Microsoft Word shortcut keys. Ctrl+W . Close the active window / document. Ctrl+Z . Undo an action. Ctrl+Y . Redo the last action or repeat an action. Ctrl+S . Save a document. Ctrl+P . Print a document. Ctrl+K . Insert a hyperlink. Alt+Left . Arrow Go back one page. Alt+Right . Arrow Go forward one page. Ctrl+C . Copy selected text or graphics to the Office Clipboard. Ctrl+V . Paste the most recent addition to the Office Clipboard. Ctrl+Shift+A . Format all letters as capitals. Ctrl+B . Applies or removes bold formatting. Ctrl+I . Applies or removes italic formatting. Ctrl+= . Apply subscript formatting (automatic spacing). Alt, F, A . Save As. Alt, S, T, I . Insert Table of Contents. Alt, S, T, R . Remove Table of Contents. Alt, W, F . Full Screen Reading – Vie...
Unix Tutorial3 Solved 1. Write a command to display content of top three largest file in a working directory. cat `ls -lS | grep -v '^d' | head -n 4 | tail -n 3 | tr -s ' ' | cut -d ' ' -f 9` 2. Count no of words in lines 40 thrugh 60 of file f1.txt sed -n '4,8p' t1 | wc -w 3. Display all filenames not begining with "." find . -maxdepth 1 -type f ! -name '.*' -print 4.Delete all special characters from file f1. tr -cd '[a-zA-Z0-9 \n]' < t1 5.Display i-node no of all files of current directory. find . -maxdepth 1 -type f -ls 6.Display those lines of file f1 that contains exactly 50 characters in it. grep -E '^.{13}$' t1 7. Replace "hello" with "HELLO" in input file fin.sh and write those lines to output file fout.sh. tr 'hello' 'HELLO' < t1 > fout.sh 8.Extract all usernames and their home directories from /etc/passwd. cat /etc/passwd | cut -d ':' -f 1,6 9.Locate lines o...
UNIX ASSIGNMENT-2 Tutorial-2 Subject : Unix shell programming Duration: 60 Min 1. list the content of currrent directory having file names as number. 2. display the filename containing only alphabats as a names. 3. remove all files containing digit as the 2nd latter as their names. 4. create the file named " asd[0-9]". 5. copy the content of file c- to c1,c2,c3. 6. display the date in the following format e.g. "Today's date is : Sat Jul 30 15:25:31 IST 2011" 7. compare 2 files named sc1, sc2 and store the common content in file result. 8. find how many number of lines from sc1 and sc2 are common. 9. display only those files containing the more then 5 character as there names ( the file names having last two characters as digit). 10. create the directory named "maxx" and copy all files having only capital letters. 11. create a file named emp* 12. make a list of employee in following order ( use vi editor ). empid empname post 1 abcd ...
Comments
Post a Comment