I'm trying to find a way to properly get only the name of the directory that im in currently. If im in a directory called HW04, and pwd
prints out home/zachary/HW04
, how would i print out only HW04? Or is using pwd in order to get the name to much? any simpler methods?
Thanks in advance.
Can also use
awk
.This will give you only the name of the current folder.