리눅스 vi 질문

익명 사용자의 이미지

리눅스 vi 에서
예를 들어
5 v
1 d
6 t
8 r
3 a
파일이 있는데 저는 비주얼 블럭 영역으로 vdtra를 선택해서 sort를하면 앞에 숫자있는 부분을 기준으로 정렬이 되는데 뒤에 있는 문자를 기준으로 정렬하는 방법이 있을까요?

파이썬3의 이미지

산법출처: https://stackoverflow.com/questions/7142227/how-do-i-sort-a-zipped-list-in-python

# -*- coding: utf-8 -*-
 
data = """\
5 v
1 d
6 t
8 r
3 a"""
 
lines = data.splitlines(False)
 
숫자 = []
영자 = []
for k in lines:
    숫자.append(k.split()[0])
    영자.append(k.split()[1])
 
압축 = zip(숫자, 영자)
압축_정렬 = sorted(압축, key=lambda x: x[1])
 
for zzz in 압축_정렬:
    print(zzz)
 
# EOF

(bionic)soyeomul@localhost:~/111$ python3 1.py
('3', 'a')
('1', 'd')
('8', 'r')
('6', 't')
('5', 'v')
(bionic)soyeomul@localhost:~/111$ 

[우분투 18.04 파여폭스 나비에서 적었습니다]

xtiinhs의 이미지

파이썬 좋아하시는 건 잘 알겠는데, 이 분의 질문 의도와는 많이 벗어난 것 같습니다.

익명 사용자의 이미지

왜 데이터를 애써 쪼개고 다시 합치죠?

원래 질문글이 python과는 관련이 없어서 이런 논의를 계속 진행하는 건 조심스럽긴 합니다만, 그래도 일단 코드가 올라왔으니...

data="""5 v
1 d
6 t
8 r
3 a"""
 
data_tuples = [tuple(line.split()) for line in data.splitlines(False)]
data_tuples.sort(key=lambda t: t[1])
 
for t in data_tuples:
    print(t)
파이썬3의 이미지

zip 을 쓰지 않고도 한방에 정리해주시네요,,,
간결한 코드에 감사드립니다^^^

파이썬3 드림

[우분투 18.04 파여폭스 나비에서 적었어요]

xtiinhs의 이미지

5 v
1 d
6 t
8 r
3 a
:%!sort -k2
3 a
1 d
8 r
6 t
5 v

일단 전체를 비주얼 라인으로 블록을 잡은 다음, sort 명령으로 파이프시킬 때 -k 옵션을 지정해 주면 됩니다. 기본적으로 sort 명령의 구분자는 공백이고, -k 2 옵션은 2번째 필드, 그러니까 뒤에 있는 알파벳을 필드로 사용하겠다는 거죠.

  -k, --key=KEYDEF          sort via a key; KEYDEF gives location and type
 
       KEYDEF  is  F[.C][OPTS][,F[.C][OPTS]] for start and stop position, where F is a field number and C a character
       position in the field; both are origin 1, and the stop position defaults to the line's end.  If neither -t nor
       -b  is  in  effect, characters in a field are counted from the beginning of the preceding whitespace.  OPTS is
       one or more single-letter ordering options [bdfgiMhnRrV], which override global ordering options for that key.
       If no key is given, use the entire line as the key.  Use --debug to diagnose incorrect key usage.
파이썬3의 이미지

덕분에 저도 배우고갑니다. 감사합니다^^^

[우분투 18.04 파여폭스 나비에서 적었어요~]

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.