简体   繁体   中英

How to check if linux user has .sh file?

I have to write script in bash that will check if logged users have any.sh files.
Checking who is logged in is simple just using:

w| awk '{print $1}'

But i have no idea how to check if they havy any.sh files

You need to read the output of the who command and use that in your find command.

Since the same user can be logged in multiple times, it's a good idea to remove duplicates before looping.

#!/bin/bash
who| awk '{print $1}' | sort -u | while read -r username; do
    find /home/"$username" -name "*.sh"
done

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM