Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Mastering Go – Third Edition

You're reading from   Mastering Go – Third Edition Harness the power of Go to build professional utilities and concurrent servers and services

Arrow left icon
Product type Paperback
Published in Aug 2021
Publisher Packt
ISBN-13 9781801079310
Length 682 pages
Edition 3rd Edition
Languages
Tools
Arrow right icon
Author (1):
Arrow left icon
Mihalis Tsoukalos Mihalis Tsoukalos
Author Profile Icon Mihalis Tsoukalos
Mihalis Tsoukalos
Arrow right icon
View More author details
Toc

Table of Contents (17) Chapters Close

Preface 1. A Quick Introduction to Go 2. Basic Go Data Types FREE CHAPTER 3. Composite Data Types 4. Reflection and Interfaces 5. Go Packages and Functions 6. Telling a UNIX System What to Do 7. Go Concurrency 8. Building Web Services 9. Working with TCP/IP and WebSocket 10. Working with REST APIs 11. Code Testing and Profiling 12. Working with gRPC 13. Go Generics 14. Other Books You May Enjoy
15. Index
Appendix A – Go Garbage Collector

Finding cycles in a UNIX file system

This section implements a practical UNIX command-line utility that can find cycles (loops) in UNIX file systems. The idea behind the utility is that with UNIX symbolic links, there is a possibility to create cycles in our file system. This can perplex backup software such as tar(1) or utilities such as find(1) and can create security-related issues. The presented utility, which is called FScycles.go, tries to inform us about such situations.

The idea behind the solution is that we keep every visited directory path in a map and if a path appears for the second time, then we have a cycle. The map is called visited and is defined as map[string]int.

If you are wondering why we are using a string and not a byte slice or some other kind of slice as the key for the visited map, it is because maps cannot have slices as keys because slices are not comparable.

The output of the utility depends on the root path used for initialing...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €18.99/month. Cancel anytime