Skip to content

janymuong/alx-system_engineering-devops

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GNU/Linux Programming & Shell Scripting

$ cat script.sh
#!/usr/bin/env bash

# bash: a script that prints directories
# 	one per line without duplicates
# 	that contain one or more files with a '.tf' extension.

find . -type f -name '*.tf' -printf '%h\n' | sort -u
$

Note:
env - Ubuntu 20.04

About

Basic shell scripting; GNU/Linux programming; DevOps

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published