첫번째나 두번째 줄을 파일명으로

rururara429의 이미지

파일의 첫번째 줄이나 두번째 줄을 출력해서 (sed -n 2 filename 하면 되나요?) 파일명을 그걸로 수정하고 싶습니다.
어렵진 않을 것 같은데, 저는 잘 감이 안 와서 ㅜ.ㅜ 도움을 부탁드립니다.

미리 감사드리며. 꾸벅.

파이썬의 이미지

(bionic)soyeomul@localhost:~/test$ cat 1.txt
안녕하세요
이것은 테스트 파일입니다
가나다
아름다운 한글

(bionic)soyeomul@localhost:~/test$ ls -l
total 12
-rwxrwxr-x. 1 soyeomul soyeomul 351  5월  5 10:56 1.py
-rwxrwxr-x. 1 soyeomul soyeomul 132  5월  5 10:29 1.py~
-rw-rw-r--. 1 soyeomul soyeomul  82  5월  5 10:51 1.txt
(bionic)soyeomul@localhost:~/test$ ./1.py
(bionic)soyeomul@localhost:~/test$ ls -l
total 12
-rwxrwxr-x. 1 soyeomul soyeomul 351  5월  5 10:56 1.py
-rwxrwxr-x. 1 soyeomul soyeomul 132  5월  5 10:29 1.py~
-rw-rw-r--. 1 soyeomul soyeomul  82  5월  5 10:51 안녕하세요.txt


#!/usr/bin/env python3
# -*- coding: utf-8 -*-

import subprocess

bf = "1.txt"
f = open(bf, "r")
lines = f.readlines()

af1 = lines[0].strip() + ".txt"
af2 = lines[1].strip() + ".txt"

if af1 == '':
subprocess.call("mv {0} {1}".format(bf, af2), shell=True)
else:
subprocess.call("mv {0} {1}".format(bf, af1), shell=True)

f.close()

황병희의 이미지

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
 
import subprocess
 
bf = "1.txt"
f = open(bf, "r")
lines = f.readlines()
 
af1 = lines[0].strip() + ".txt"
af2 = lines[1].strip() + ".txt"
 
if af1 == '':
    subprocess.call("mv {0} {1}".format(bf, af2), shell=True)
else:
    subprocess.call("mv {0} {1}".format(bf, af1), shell=True)
 
f.close()

--
^고맙습니다 감사합니다_^))//

황병희의 이미지

적고 나니 코드에 결함이 있습니다.
if af1 == '': 이 라인을
if af1 == '.txt': 로 정정합니다...

또한 전반적으로 완벽하진 않습니다.
.txt 파일에만 작동합니다.
다른 확장자를 쓸 경우엔 코드를 좀 더 보완해야 하네요,,,
에거에거 허리가 아프네여;;;

--
^고맙습니다 감사합니다_^))//

rururara429의 이미지

업무가 편- 안- 해 졌어요.
감사합니다!!!

황병희의 이미지

저녁 소여물 주고나서 쪼매더 신경써서 코드를 작성해봤습니다.
현재 디렉토리내에 있는 파일들중 특수파일들 가령 하위디렉토리, 심볼링링크, 파이썬스크립트 등을 제외한 나머지 파일들을 변경하게끔 코드를 보완해봤습니다.

농사꾼 머리로 더 쥐어짜낼 수가 없었습니다,,,
꾸벅,,,

https://gitlab.com/soyeomul/test/blob/d03916995b058ab9047310bfee9fc3f3328c7818/1.py

--
^고맙습니다 감사합니다_^))//

chanik의 이미지

bash shell script로 하셔도 됩니다.
대상 파일(*.txt)이나 새 파일명 확장자(.txt) 추가 여부 등은
상황에 맞게 적당히 수정하시고요.

for old in *.txt; do
  # 첫번째/두번째줄에서 알파벳이나 숫자가 포함된 첫줄을 추출
  new=`head -2 "$old" | grep [[:alnum:]] | head -1`
  if [ "$new" == "" ]; then
    echo "$old: no alphanumeric characters in line 1 ~ 2"
  else
    echo "$old -> ${new}.txt"
    mv "$old" "${new}.txt"
  fi
done
황병희의 이미지

두줄 모두다 공백일 경우도 대응하신 세심함에 고개가 숙여집니다. 덕분에 하나 배우고 갑니다,,, 감사합니다^^^

--
^고맙습니다 감사합니다_^))//

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.