From 5858ea59f493232f6043565d3b11fc353817b003 Mon Sep 17 00:00:00 2001 From: Nicolas Boisselier Date: Mon, 6 Feb 2017 00:06:05 +0000 Subject: [PATCH] etc/profile.d/functions --- etc/profile.d/functions | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/etc/profile.d/functions b/etc/profile.d/functions index 9583d9fb..82159cc9 100644 --- a/etc/profile.d/functions +++ b/etc/profile.d/functions @@ -853,7 +853,7 @@ uncomment() { } gid_from_to() { - local cmd="find / -xdev -uid $1 -exec chgrp -v $2 {} \;" + local cmd="find / -uid $1 -exec chgrp -v $2 {} \;" echo "Press a key to run:" echo "$cmd" read @@ -861,7 +861,7 @@ gid_from_to() { } uid_from_to() { - local cmd="find / -xdev -uid $1 -exec chown -v $2 {} \;" + local cmd="find / -uid $1 -exec chown -v $2 {} \;" echo "Press a key to run:" echo "$cmd" read -- 2.47.3