1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-03 07:08:01 +00:00

Add Check The Current Working Directory as a unix til

This commit is contained in:
jbranchaud
2016-09-15 08:23:39 -05:00
parent a99038dbd4
commit 61bcf6a0e5
2 changed files with 13 additions and 1 deletions

View File

@@ -7,7 +7,7 @@ variety of languages and technologies. These are things that don't really
warrant a full blog post. These are mostly things I learn by pairing with
smart people at [Hashrocket](http://hashrocket.com/).
_471 TILs and counting..._
_472 TILs and counting..._
---
@@ -402,6 +402,7 @@ _471 TILs and counting..._
- [Cat A File With Line Numbers](unix/cat-a-file-with-line-numbers.md)
- [Change Default Shell For A User](unix/change-default-shell-for-a-user.md)
- [Check If A Port Is In Use](unix/check-if-a-port-is-in-use.md)
- [Check The Current Working Directory](unix/check-the-current-working-directory.md)
- [Clear The Screen](unix/clear-the-screen.md)
- [Command Line Length Limitations](unix/command-line-length-limitations.md)
- [Copying File Contents To System Paste Buffer](unix/copying-file-contents-to-system-paste-buffer.md)

View File

@@ -0,0 +1,11 @@
# Check The Current Working Directory
Use
```
$ pwd
```
to display the absolute path of the current working directory.
See `man pwd` for more details.