हजारों युक्त फ़ोल्डर से 100 फ़ाइलों को कैसे स्थानांतरित किया जाए?


43

मेरे पास हजारों फाइलों के साथ एक निर्देशिका है। मैं 100 फाइलों को कैसे स्थानांतरित कर सकता हूं (कोई भी फाइल दूसरे स्थान पर करेगा)।


क्योंकि यूनिक्स और लिनक्स न ही इसके उपकरणों के बारे में एक बड़ी वेबसाइट है, इसलिए मैं बस वेबसाइट की तरह about.comऔर कुछ अन्य वेबसाइट पर उपलब्ध विकल्पों की सूची के लिए जा रहा हूं जो कि मैं संभवतः उपयोग कर सकता हूं .. लेकिन ऐसा कुछ भी नहीं पाया गयाtail
gaijin

जवाबों:


37
for file in $(ls -p | grep -v / | tail -100)
do
mv $file /other/location
done

यही कारण है कि मान लिया गया फ़ाइल नाम रिक्त स्थान, न्यू लाइन (का डिफ़ॉल्ट मान संभालने शामिल नहीं है $IFS), वाइल्डकार्ड वर्णों ( ?, *, [) या के साथ शुरू -


12
ध्यान दें कि यह दृष्टिकोण केवल तभी काम करता है जब फ़ाइल नामों में कोई विशेष वर्ण (व्हाट्सएप, गैर-वर्ण वर्ण, ``) न हों। एक सामान्य नियम के रूप में, के आउटपुट को पार्स न करेंls । और हमेशा डबल-कोट पैरामीटर और कमांड प्रतिस्थापन।
गिल्स एसओ- बुराई को रोकना

1
100 फ़ाइलों के लिए कौन सा हिस्सा है?
tshepang

3
मेरी पिछली टिप्पणी पर अपडेट करें: गिल्स के संदर्भ लिंक को पढ़ने के बाद, ls के आउटपुट को पार्स न करें , मैंने पाया है कि मेरी findकमांड की कमी थी। एक arg गलत जगह पर था, और मैंने null फ़ाइल-नाम एंडिंग्स जोड़े हैं। यह एक एकल पंक्ति का एक लंबा हिस्सा है, लेकिन यह सब मैं एक टिप्पणी में कर सकता हूं। यहाँ निश्चित स्निपेट है:find . -maxdepth 1 -type f \( ! -iname ".*" \) -print0 | while read -rd $'\0' file ; do mv -- "$file" /other/location/ ; done
पीटर

@perer एक नोट के रूप में कि read -dविकल्प सभी गोले के लिए पोर्टेबल नहीं है, लेकिन अगर आप bashवैसे भी उपयोग कर रहे हैं, तो आपको -d ''उसी तरह का प्रभाव प्राप्त करना चाहिए -d $'\0'
jw013

एफडब्ल्यूआईडब्ल्यू अगर आप चाहते हैं कि यह एक ऑनलाइनर के रूप में चले, ;तो अब एक नई पंक्ति जोड़ें ।
पैट्रिक

37

यह zsh में सबसे आसान है:

mv -- *([1,100]) /other/location/

यह चाल पहले 100 गैर छिपा फ़ाइलें (किसी भी प्रकार की, परिवर्तन ([1,100])करने के लिए (.[1,100])के लिए नियमित रूप से केवल, या फ़ाइलों (^/[1,100])के किसी भी प्रकार के लिए लेकिन निर्देशिका ) नाम कोषगत क्रम में। आप 100 सबसे पुरानी फ़ाइलों को स्थानांतरित करने के लिए o ग्लोब क्वालीफायर के साथ एक अलग तरह का क्रम चुन सकते हैं :

mv -- *(Om[1,100]) /other/location/

अन्य गोले के साथ, आप इसे जल्दी से बाहर निकलने के साथ लूप में कर सकते हैं।

i=0
for x in *; do
  if [ "$i" = 100 ]; then break; fi
  mv -- "$x" /other/location/
  i=$((i+1))
done

एक और पोर्टेबल तरीका फाइलों की सूची बनाना और सभी 100 अंतिम को हटाना होगा


सुरक्षित खोल विस्तार के लिए +1। वृद्धिशील संचालन के साथ भी अधिक पठनीय होगा $(( i++ ))या $[ i++ ]?

2
@ हेस कुछ गोले लागू नहीं होते हैं ++और --। आप : $((i+=1))इसके बजाय लिख सकते हैं i=$((i+1)); मुझे यकीन नहीं है कि यह अधिक पठनीय है।
गिल्स एसओ- बुराई को रोकना '

1
: -D, मैं वास्तव में इस जवाब को संपादित सोच रहा था कि यह मेरा था ... क्षमा करें। अर्थ बदलने के लिए स्वतंत्र महसूस करें।
स्टीफन चेजलस

@ StéphaneChazelas मुझे आश्चर्य है कि आप निर्देशिकाओं और सहानुभूति को बाहर क्यों करेंगे, सवाल ने कहा कि इसके बारे में कुछ भी नहीं।
गाइल्स का SO- बुराई पर रोक '19

@ गिले, स्वीकार किए गए उत्तर में ls -p | grep -v /हाल ही का प्रश्न है जो यहाँ पर डुबोता है।
स्टीफन चेज़लस

8

यदि आप zsh का उपयोग नहीं कर रहे हैं:

set -- *
[ "$#" -le 100 ] || shift "$(($# - 100))"
mv -- "$@" /target/dir

100 लोगों को अंतिम (वर्णमाला के क्रम में) ले जाएगा।


3

शेल में निम्नलिखित ऑन्लाइनर मदद करेगा।

foreach i (`Find_Directory -type f --max-गहराई 1 | tail -100`); करना; {mv $ i Target_Directory}; किया हुआ

1
वह खोल क्या है?
phk

@phk, zshअगर पहली नजर में ऐसा लगता है कि zshवाक्यविन्यास के लिए काफी अलग लग रहा है, भले ही काम करने के लिए होगा । गिल्स ने इसे करने के लिए बहुत सरल तरीका दिखाया है zsh। फिर भी, यह अभी भी वर्तमान में स्वीकृत उत्तर की तुलना में अधिक विश्वसनीय है।
स्टीफन चेज़लस

3

निम्नलिखित ने मेरे लिए काम किया। क्षमा करें यदि यह पहले पोस्ट किया गया था, लेकिन मैंने इसे त्वरित स्कैन में नहीं देखा था।

ls path/to/dir/containing/files/* | head -100 | xargs -I{} cp {} /Path/to/new/dir


1

एमएमवी एक उत्कृष्ट उपयोगिता है जो आपको फाइलों के बड़े पैमाने पर नामकरण करने की भी अनुमति देगा। (मुझे sudo apt-get install mmvइसे स्थापित करने के लिए अपने कंप्यूटर पर आना पड़ा ।) सरल उपयोग उदाहरण: मान लीजिए कि आपके पास एक्सटेंशन वाली फ़ाइलों की एक निर्देशिका है। JPG जिसे आप लोअरकेस में बदलना चाहते हैं। jpg निम्नलिखित आदेश चाल है:

mmv \*.JPG \#1.jpg

वाइल्डकार्ड दिखाने के लिए बैकस्लैश का उपयोग किया जाता है। * * JPG एक JPG एक्सटेंशन के साथ कुछ भी मेल खाता है। कमांड के "टू" भाग में, # 1 फ़ाइल का नाम बदलने के लिए पहले वाइल्डकार्ड से मिलान पाठ का उपयोग करता है। बेशक, आप फ़ाइल को स्थानांतरित करने के लिए # 1 से पहले एक अलग रास्ता रख सकते हैं।


2
यह अधिक फायदेमंद होगा यदि आप प्रदान करते हैं कि आप वास्तव में उस उपकरण का उपयोग कैसे करेंगे जो आप लक्ष्य को पूरा करने के लिए सुझाते हैं।
दशन

1
एक उपयोग उदाहरण जोड़ा
पीट

1
#!/bin/bash
c=1; d=1; mkdir -p NEWDIR_${d}
for jpg_file in *.jpg
do
if [ $c -eq 100 ]
then
d=$(( d + 1 )); c=0; mkdir -p NEWDIR_${d}
fi
mv "$jpg_file" NEWDIR_${d}/
c=$(( c + 1 ))
done

इस कोड को आज़माएं


0

इसे इस्तेमाल करे:

find /source/directory -type f -maxdepth 1 -print | tail -100 | xargs -J % mv % /other/location/

यह गलत है, आप तीन तर्कों को पारित कर रहे हैं mv, जिनमें से अंतिम एक (शायद) एक निर्देशिका नहीं है। और यह वास्तव में इस सवाल का जवाब नहीं देता है - पूछने वाला किसी दी गई संख्या को स्थानांतरित करना चाहता है, उन सभी को नहीं।
मैट

कमांड अपडेट किया गया।
सौमिल

0

मैं यहाँ से आया था, लेकिन मैं से भागों में फ़ाइलों की प्रतिलिपि बनाना (99 प्रत्येक) की आवश्यकता होगी, किया गया था /DIR1करने के लिए /DIR2। मैं अन्य स्क्रिप्ट की मदद करने के लिए यहाँ स्क्रिप्ट पेस्ट करूँगा:

#!/bin/bash
# Thanks to <Jordan_U> @ #ubuntu
# 06 Dec 2014

i=0
copy_unit=98

for file in /DIR1/*; do
  cp "$file" /DIR2
  if [[ "$i" -ge "$copy_unit" ]]; then
    echo "Pausing, press enter to continue"
    read
    i=0
  fi
  ((i++))
done

0

यदि आप उपयोग करने में रुचि रखते हैं, तो निम्न कमांड काम करता है ls

$ ls -rt source/* | head -n100 | xargs cp -t destination

यह कैसे काम करता है ??

  • ls -rt source/* - कमांड रिश्तेदार पथ के साथ सभी फाइलों को सूचीबद्ध करता है
  • head -n100 - पहले 100 फाइलें लेता है
  • xargs cp -t destination - इन फ़ाइलों को गंतव्य फ़ोल्डर में ले जाता है

0

यदि आप सुरक्षित होना चाहते हैं / रिक्त स्थान के साथ फ़ाइल नाम संभालना चाहते हैं, तो उन में नए लिंक, उद्धरण, बैकस्लैश आदि हैं, आपको रिक्त-समाप्ति वाले विभाजकों का उपयोग करना होगा:

find "$srcdir" -maxdepth 1 -type f -print0 | head -z -n 100 | xargs -0 -r -- mv -t "$destdir" --

EDIT2: नोट: आप नहीं है, तो head -z( जो भी कारण के लिए ) आप ऊपर जगह ले सकता है head -z -n 1000के साथ tr '\0\n' '\n\0' | head -n 1000 | tr '\0\n' '\n\0'(या अन्य तरीकों से देख )

-maxdepth 1की उपनिर्देशिकाओं में फ़ाइलों की तलाश से बचना होगा $srcdir, इसलिए सूचीबद्ध केवल वही फाइलें हैं जो भीतर हैं $srcdir। प्रत्येक सूचीबद्ध फ़ाइल के बीच न्यूलाइन ( ) के बजाय का
-print0उपयोग करेगा - यह xargs के साथ newlines और रिक्त स्थान वाली फ़ाइलों को संभालने में मदद करता है। लाइनों के रूप में समाप्त (नईलाइन ( ) समाप्त) लाइनों के बजाय समाप्त हो जाएगा । केवल पहली फ़ाइलों को सूचीबद्ध करेगा जो मिलीं। यदि आप यह देखना चाहते हैं कि कमांड क्या निष्पादित करेगी, तो जोड़ें (या )। "इनपुट आइटम व्हॉट्सएप के बजाय एक अशक्त ( ) वर्ण द्वारा समाप्त किए जाते हैं , और उद्धरण और बैकस्लैश विशेष नहीं हैं (प्रत्येक वर्ण को शाब्दिक रूप से लिया गया है)" नहीं चलेगा\0\n
head -z\0\n-n 100100find
xargs-t--verbose
xargs -0\0
xargs -rmvअगर वहाँ कोई फ़ाइलें स्थानांतरित करने के लिए कर रहे हैं (यानी। अगर findकोई फ़ाइलें नहीं मिली)।
--कार्यक्रम के विकल्प के रूप में तर्कों के प्रसंस्करण को समाप्त करता है, यहां अधिक विवरण

नमूना उत्पादन (एक mvकमांड चलाता है और उनके नाम में नई सुर्खियों वाली फाइलों को भी संभाल सकता है):

$ find /tmp/t -maxdepth 1 -type f -print0 | head -z -n 100 | xargs -t -0 -r -- mv -t /tmp -- ; echo "exit codes: ${PIPESTATUS[@]}"
mv -t /tmp -- /tmp/t/file containing quotes"' then spaces /tmp/t/file containing quotes"' /tmp/t/file containing a slash n here\n /tmp/t/file containing a new line here
and continues /tmp/t/s /tmp/t/-x and -L 1. /tmp/t/of replace-str in the initi /tmp/t/-thisfile_starts_with_a_hyphen and has spaces and a -hyphen here /tmp/t/-thisfile_starts_with_a_hyphen and has spaces /tmp/t/-thisfile_starts_with_a_hyphen /tmp/t/another      with       spaces /tmp/t/one with spaces /tmp/t/c /tmp/t/a 
exit codes: 0 0 0

$ ls -1R /tmp/t
/tmp/t:
a
'another      with       spaces'
b
c
'file containing a new line here'$'\n''and continues'
'file containing a slash n here\n'
'file containing quotes"'\'''
'file containing quotes"'\'' then spaces'
'of replace-str in the initi'
'one with spaces'
s
'some dir'
-thisfile_starts_with_a_hyphen
'-thisfile_starts_with_a_hyphen and has spaces'
'-thisfile_starts_with_a_hyphen and has spaces and a -hyphen here'
'-x and -L 1.'

/tmp/t/b:
'file with spaces'

'/tmp/t/some dir':
'some file'

के लिए find:

-maxdepth levels
       Descend at most levels (a non-negative integer) levels of direc‐
       tories below the starting-points.  -maxdepth 0
        means only apply the tests and actions to  the  starting-points
       themselves.
-type c
       File is of type c:

       b      block (buffered) special

       c      character (unbuffered) special

       d      directory

       p      named pipe (FIFO)

       f      regular file

       l      symbolic link; this is never true if the -L option or the
              -follow  option is in effect, unless the symbolic link is
              broken.  If you want to search for symbolic links when -L
              is in effect, use -xtype.

       s      socket

       D      door (Solaris)
-P     Never follow symbolic links.  This  is  the  default  behaviour.
       When find examines or prints information a file, and the file is
       a symbolic link, the information used shall be  taken  from  the
       properties of the symbolic link itself.
-L     Follow symbolic links.  When find examines or prints information
       about files, the information used shall be taken from the  prop‐
       erties  of  the file to which the link points, not from the link
       itself (unless it is a broken symbolic link or find is unable to
       examine  the file to which the link points).  Use of this option
       implies -noleaf.  If you later use the -P option,  -noleaf  will
       still  be  in  effect.   If -L is in effect and find discovers a
       symbolic link to a subdirectory during its search, the subdirec‐
       tory pointed to by the symbolic link will be searched.

       When the -L option is in effect, the -type predicate will always
       match against the type of the file that a symbolic  link  points
       to rather than the link itself (unless the symbolic link is bro‐
       ken).  Actions that can cause symbolic links  to  become  broken
       while  find  is executing (for example -delete) can give rise to
       confusing behaviour.  Using -L causes  the  -lname  and  -ilname
       predicates always to return false.

के लिए head:

-n, --lines=[-]NUM
       print the first NUM lines instead of  the  first  10;  with  the
       leading '-', print all but the last NUM lines of each file
-z, --zero-terminated
       line delimiter is NUL, not newline

संपादित करें: किसी ने उल्लेख किया है कि उनके पास नहीं था head -z, यह वह संस्करण है जिसका मैं उपयोग कर रहा था (फेडोरा 25 में):

$ head --version
head (GNU coreutils) 8.25
Copyright (C) 2016 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by David MacKenzie and Jim Meyering.

$ rpm -qf /usr/bin/head
coreutils-8.25-17.fc25.x86_64

के लिए xargs:

-0, --null
       Input  items  are  terminated  by a null character instead of by
       whitespace, and the quotes and backslash are not special  (every
       character is taken literally).  Disables the end of file string,
       which is treated like any other  argument.   Useful  when  input
       items  might  contain  white space, quote marks, or backslashes.
       The GNU find -print0 option produces  input  suitable  for  this
       mode.
-r, --no-run-if-empty
       If the standard input does not contain any nonblanks, do not run
       the command.  Normally, the command is run once even if there is
       no input.  This option is a GNU extension.
-P max-procs, --max-procs=max-procs
       Run  up  to max-procs processes at a time; the default is 1.  If
       max-procs is 0, xargs will run as many processes as possible  at
       a  time.   Use the -n option or the -L option with -P; otherwise
       chances are that only one exec will be  done.   While  xargs  is
       running,  you  can send its process a SIGUSR1 signal to increase
       the number of commands to run simultaneously, or  a  SIGUSR2  to
       decrease  the number.  You cannot increase it above an implemen‐
       tation-defined limit (which is shown with  --show-limits).   You
       cannot  decrease  it  below  1.  xargs never terminates its com‐
       mands; when asked to decrease, it merely waits for more than one
       existing command to terminate before starting another.

       Please  note  that  it is up to the called processes to properly
       manage parallel access to shared  resources.   For  example,  if
       more  than one of them tries to print to stdout, the ouptut will
       be produced in an indeterminate order (and very likely mixed up)
       unless  the  processes  collaborate in some way to prevent this.
       Using some kind of locking scheme is one  way  to  prevent  such
       problems.   In  general, using a locking scheme will help ensure
       correct output but reduce performance.  If  you  don't  want  to
       tolerate  the  performance  difference,  simply arrange for each
       process to produce a separate output file (or otherwise use sep‐
       arate resources).
-t, --verbose
       Print  the command line on the standard error output before exe‐
       cuting it.

के लिए cp:

-t, --target-directory=DIRECTORY
       copy all SOURCE arguments into DIRECTORY
-v, --verbose
       explain what is being done

-1

मुझे पता है कि यह धागा एक बहुत पुराना है, लेकिन मुझे लगता है कि मुझे जितना वे होना चाहिए, उससे अधिक जटिल उत्तर मिले। यह CentOS में काम करता है, लेकिन यह काफी सरल लगता है कि इसे संभवतः अन्य डिस्ट्रोस में काम करना चाहिए।

cp `ls someDir | head -n 100` someDir100/

1
यह काम नहीं करता क्योंकि आउटपुट में lsअग्रणी somedir/उपसर्ग शामिल नहीं होगा , और रिक्त या वाइल्डकार्ड वर्णों के साथ फ़ाइल नाम के लिए काम नहीं करेगा या इसके साथ शुरू होगा -
स्टीफन चेजलस

काफी उचित। मैंने वास्तव में cp ls | head -n 100../someDir100/ को टारगेट डायरेक्टरी के अंदर से किया था और उनमें से कोई भी फ़ाइल नाम उन मामलों को संतुष्ट नहीं करता था। सौभाग्यशाली हो तो अच्छा!
जेसन
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.