Created
January 8, 2021 16:37
-
-
Save suchoudh/2b25a9642ae1991ca2ce1830ccd6035d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ls | sort | awk '{ print "alias " $0"=cd $HBox/"$0";cat readme*.md"}' | |
| alias Upskillin=cd $HBox/Upskillin;cat readme*.md | |
| alias UrgentlyGet=cd $HBox/UrgentlyGet;cat readme*.md | |
| alias Whatis=cd $HBox/Whatis;cat readme*.md | |
| alias WorkingWith=cd $HBox/WorkingWith;cat readme*.md |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
use " in place of ' alias command still works and need to use a escape char
ls | sort | awk '{ print "alias " $0"="cd $HBox/"$0";cat readme11*.md""}'