|
|
|
|
UGU: Unix Guru Universe - Unix Tip #4622- November 6, 2023
- Home : Help
: Today's Tip
Unix Tip #4622- November 6, 2023
MOVING FILES AROUND
Here is another way to move
files around.
Sometimes you find yourself
wanting to move a bunch of
files into a new directory
that is to be created in the
current working directory.
Rather than using a temporary
directory, or grep and variable
substitution; use a subshell:
$ ( \ls; echo dir; mkdir dir ) | xargs mv
The trick is in using a subshell
to run a number of commands
_before_ the output is piped to
xargs. This idiom is also useful
for plenty of other applications.
NOTE: All tips provided are USE AT YOUR OWN RISK. Tips are submitted
by various unix admins around the globe. UGU suggest you read and
test each tip in a non-volitile environment before placing into
production.
LAST 5 TIPS
4621
- GOOD TIME FOR CRON
4620
- PATHS EASIER TO READ
4619
- KEEP THAT USER OUT!
4618
- GETTING IPs FROM IFCONFIG
4617
- PING THE HOST TABLE
I want to
SUBSCRIBE
and get a UGU Tip everyday.
I want to
UNSUBSCRIBE
and NOT get a UGU Tip everyday.
If you have a UNIX TIP let us know, we just may use it:
(All tips become the property of the Unix Guru Universe)
|
|
|
Copyright 1994-2024 Unix Guru Universe |
|
|
|
|