tefil 0.1.3 → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8c197345e51e38cf0cb7297dd9c08fe9ef6a5a3f
4
- data.tar.gz: 97fdebfae867adf90d1736252a76137960625cb3
3
+ metadata.gz: a9f33d97e6372c4513f17026dab55e47d8452db9
4
+ data.tar.gz: 658c279c7e6a680f391835939078731c54f59d64
5
5
  SHA512:
6
- metadata.gz: 83bfea17dc93767c22aaae7ae0f443360ece825c89573fe27996a0c9ecd945007fd87efb8c4edd10ab61f14445972f2ea5203cb5353ceae0336c604a5d657379
7
- data.tar.gz: 4483f59090ee57bfd12bd495a39fc495334283d04702daf0ac543db2f387713a1fed4e5434610d20562b9b91b98f241705a2ff3b2cfaabd57768a72c067eb078
6
+ metadata.gz: 7f5c7690d8c562c88f7337553d793d66529660a6ee661ea9f50a1a19f2f08c5c6efbe3c601bbb0018b39dd1f9b9c150742b539a917ad43daa9bf3ba323a5eb12
7
+ data.tar.gz: 234e09896e7d87602852e0c5469dcb28206a7897db63ecf485ad7b1a6c429dd31284dfe309cf0fe4b9d5617e650e565f46c86adf57c512129f18dcd7434018be
data/CHANGES CHANGED
@@ -1,21 +1,34 @@
1
1
  = tefil changelog
2
2
 
3
- == Master (for 0.1.4)
3
+ == Master (for 0.1.5)
4
+
5
+ == Version 0.1.4 [2017-05-31] released
6
+
7
+ * indent width is modified to 2
8
+ * fswiki2md: enumerate from '0.' to '1.'
9
+ * add bin/statistics
10
+ * bin/columnform, left-justified is as default
11
+ * bin/columnform, preserve indent
12
+ * add bin/columnanalyze
4
13
 
5
14
  == Version 0.1.3 [2016-05-31] released
15
+
6
16
  * bin/calc can accept commandline argument
7
17
 
8
18
  == Version 0.1.2 [2016-04-27] released
19
+
9
20
  * Add bin/calc
10
21
  * Add 'bin/linesub --regexp' option
11
22
  * Adjust to Ruby2.3
12
23
 
13
24
  == Version 0.1.1 [2016-03-11] released
25
+
14
26
  * Add bin/eachsentence
15
27
  * Add bin/fswiki2md
16
28
  * Add bin/md2fswiki
17
29
 
18
30
  == Version 0.1.0 [2015-07-07] released
31
+
19
32
  * Add bin/packpercent .
20
33
  * Add usage banner.
21
34
  * Rename bin/formcolumn to columnform
@@ -27,14 +40,17 @@
27
40
  * Remove Tefil::TextFilterBase.filter (class method)
28
41
 
29
42
  == Version 0.0.3 [2013-05-10] released
43
+
30
44
  * Rename TextFilter to Tefil
31
45
  * Add Tefil::ColumnFormer
32
46
  * Add -l(left alline) option to formcolumn command.
33
47
 
34
48
  == Version 0.0.2 [2013-04-18] released
49
+
35
50
  * Adjust to builtinextension-0.1.0.
36
51
 
37
52
  == Version 0.0.1
53
+
38
54
  * Change indent character from tab to two spaces.
39
55
  * Rename textfilter to linesub
40
56
  * Add bin/lineescapezsh
@@ -42,4 +58,5 @@
42
58
  * Add -g option to bin/linesub
43
59
 
44
60
  == Version 0.0.0
61
+
45
62
  * Initial release.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.3
1
+ 0.1.4
data/bin/calc CHANGED
@@ -14,10 +14,9 @@ require "tefil"
14
14
  options = {}
15
15
  op = OptionParser.new
16
16
  op.banner = [
17
- "Usage: #{File.basename("#{__FILE__}")} old_str new_str [options] [files]",
17
+ "Usage: #{File.basename("#{__FILE__}")} [options] [files]",
18
18
  ].join("\n")
19
19
  op.on("-o" , "--overwrite" , "Overwrite."){ options[:overwrite] = true}
20
- op.on("-g" , "--global" , "Globally substitute."){ options[:global] = true}
21
20
  op.on("-p" , "--preserve" , "Preserve equation with '='."){ options[:preserve] = true}
22
21
  op.on("-r" , "--ruby" , "Use Ruby 'eval' in spite of 'bc -l', powerful but security weakness."){ options[:ruby] = true} #Math::PI や実数乗ができる。
23
22
  op.parse!(ARGV)
data/bin/columnanalyze ADDED
@@ -0,0 +1,28 @@
1
+ #! /usr/bin/env ruby
2
+ # coding: utf-8
3
+ #
4
+
5
+ require "pp"
6
+ require "optparse"
7
+ require "rubygems"
8
+ require "tefil"
9
+
10
+ # option analysis
11
+ OPTIONS = {:separator => ' '}
12
+ op = OptionParser.new
13
+ op.banner = [
14
+ #"Usage: #{File.basename("#{__FILE__}")} [options] [files]",
15
+ "Usage: #{File.basename("#{__FILE__}")} [item...] [item=val...]",
16
+ ].join("\n")
17
+ #op.on("-o" , "--overwrite" , "Overwrite"){ OPTIONS[:overwrite] = true}
18
+ #op.on("-s char", "--separator=char", "Indicate separator"){|val| OPTIONS[:separator] = val}
19
+ #op.on("-l" , "--left-just" , "Left justified (Default)" ){ OPTIONS[:just] = :left}
20
+ #op.on("-r" , "--right-just" , "Right justified"){ OPTIONS[:just] = :right}
21
+ op.parse!(ARGV)
22
+
23
+ ## default settings
24
+ #OPTIONS[:overwrite] ||= false
25
+ #OPTIONS[:just] ||= :left
26
+
27
+ #Tefil::ColumnAnalyzer.new(OPTIONS).filter(ARGV)
28
+ Tefil::ColumnAnalyzer.new(ARGV).filter([])
data/bin/columnform CHANGED
@@ -15,11 +15,14 @@ op = OptionParser.new
15
15
  op.banner = [
16
16
  "Usage: #{File.basename("#{__FILE__}")} [options] [files]",
17
17
  ].join("\n")
18
- op.on("-o" , "--overwrite" , "Overwrite."){ OPTIONS[:overwrite] = true}
19
- op.on("-s char", "--separator=char", "Indicate separator."){|val| OPTIONS[:separator] = val}
20
- op.on("-l" , "--left-alline" , "Left alline."){ OPTIONS[:left] = true}
18
+ op.on("-o" , "--overwrite" , "Overwrite"){ OPTIONS[:overwrite] = true}
19
+ op.on("-s char", "--separator=char", "Indicate separator"){|val| OPTIONS[:separator] = val}
20
+ op.on("-l" , "--left-just" , "Left justified (Default)" ){ OPTIONS[:just] = :left}
21
+ op.on("-r" , "--right-just" , "Right justified"){ OPTIONS[:just] = :right}
21
22
  op.parse!(ARGV)
22
23
 
24
+ ## default settings
23
25
  OPTIONS[:overwrite] ||= false
26
+ OPTIONS[:just] ||= :left
24
27
 
25
28
  Tefil::ColumnFormer.new(OPTIONS).filter(ARGV)
data/bin/linesub CHANGED
@@ -19,6 +19,7 @@ op.banner = [
19
19
  op.on("-o" , "--overwrite" , "Overwrite"){ options[:overwrite] = true}
20
20
  op.on("-g" , "--global" , "Globally substitute"){ options[:global] = true}
21
21
  op.on("-r" , "--reg-exp" , "Regular expression for old_str"){ options[:regexp] = true}
22
+ op.on("-f" , "--filename" , "Rename filename at the same time"){ options[:filename] = true}
22
23
  op.parse!(ARGV)
23
24
 
24
25
  old_str = ARGV.shift
@@ -26,5 +27,9 @@ new_str = ARGV.shift
26
27
 
27
28
  options[:overwrite] ||= false
28
29
 
30
+ #if options[:filename]
31
+ # if FileTest.exist? new_str
32
+ #end
33
+
29
34
  tf = Tefil::LineSubstituter.new(old_str, new_str, options)
30
35
  tf.filter(ARGV)
data/bin/statistics ADDED
@@ -0,0 +1,24 @@
1
+ #! /usr/bin/env ruby
2
+ # coding: utf-8
3
+
4
+ require "pp"
5
+ require "optparse"
6
+ require "rubygems"
7
+ require "tefil"
8
+
9
+
10
+ # option analysis
11
+ options = {}
12
+ op = OptionParser.new
13
+ #op.banner = [
14
+ # "Usage: #{File.basename("#{__FILE__}")} [options] [files]",
15
+ #].join("\n")
16
+ op.on("-o" , "--overwrite" , "Overwrite."){ options[:overwrite] = true}
17
+ op.parse!(ARGV)
18
+
19
+
20
+ options[:overwrite] ||= false
21
+
22
+ stat = Tefil::Statistics.new options
23
+ stat.filter(ARGV)
24
+
@@ -0,0 +1,7 @@
1
+ #! /usr/bin/zsh
2
+
3
+ echo '1+2' | calc
4
+ echo '1.0+2.0' | calc
5
+ echo 'sqrt(2)' | calc
6
+ echo 'l(2)' | calc
7
+ echo 'e(1)' | calc
@@ -0,0 +1,250 @@
1
+ USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
2
+ root 1 0.0 0.0 119924 6048 ? Ss 5月29 0:02 /sbin/init splash
3
+ root 2 0.0 0.0 0 0 ? S 5月29 0:00 [kthreadd]
4
+ root 3 0.0 0.0 0 0 ? S 5月29 0:00 [ksoftirqd/0]
5
+ root 7 0.0 0.0 0 0 ? S 5月29 0:25 [rcu_sched]
6
+ root 8 0.0 0.0 0 0 ? S 5月29 0:00 [rcu_bh]
7
+ root 9 0.0 0.0 0 0 ? S 5月29 0:00 [migration/0]
8
+ root 10 0.0 0.0 0 0 ? S 5月29 0:00 [watchdog/0]
9
+ root 11 0.0 0.0 0 0 ? S 5月29 0:00 [watchdog/1]
10
+ root 12 0.0 0.0 0 0 ? S 5月29 0:00 [migration/1]
11
+ root 13 0.0 0.0 0 0 ? S 5月29 0:00 [ksoftirqd/1]
12
+ root 16 0.0 0.0 0 0 ? S 5月29 0:00 [watchdog/2]
13
+ root 17 0.0 0.0 0 0 ? S 5月29 0:00 [migration/2]
14
+ root 18 0.0 0.0 0 0 ? S 5月29 0:00 [ksoftirqd/2]
15
+ root 21 0.0 0.0 0 0 ? S 5月29 0:00 [watchdog/3]
16
+ root 22 0.0 0.0 0 0 ? S 5月29 0:00 [migration/3]
17
+ root 23 0.0 0.0 0 0 ? S 5月29 0:00 [ksoftirqd/3]
18
+ root 26 0.0 0.0 0 0 ? S 5月29 0:00 [watchdog/4]
19
+ root 27 0.0 0.0 0 0 ? S 5月29 0:00 [migration/4]
20
+ root 28 0.0 0.0 0 0 ? S 5月29 0:00 [ksoftirqd/4]
21
+ root 31 0.0 0.0 0 0 ? S 5月29 0:00 [watchdog/5]
22
+ root 32 0.0 0.0 0 0 ? S 5月29 0:00 [migration/5]
23
+ root 33 0.0 0.0 0 0 ? S 5月29 0:00 [ksoftirqd/5]
24
+ root 36 0.0 0.0 0 0 ? S 5月29 0:00 [watchdog/6]
25
+ root 37 0.0 0.0 0 0 ? S 5月29 0:00 [migration/6]
26
+ root 38 0.0 0.0 0 0 ? S 5月29 0:00 [ksoftirqd/6]
27
+ root 41 0.0 0.0 0 0 ? S 5月29 0:00 [watchdog/7]
28
+ root 42 0.0 0.0 0 0 ? S 5月29 0:00 [migration/7]
29
+ root 43 0.0 0.0 0 0 ? S 5月29 0:00 [ksoftirqd/7]
30
+ root 46 0.0 0.0 0 0 ? S 5月29 0:00 [kdevtmpfs]
31
+ root 47 0.0 0.0 0 0 ? S< 5月29 0:00 [netns]
32
+ root 48 0.0 0.0 0 0 ? S< 5月29 0:00 [perf]
33
+ root 49 0.0 0.0 0 0 ? S 5月29 0:00 [khungtaskd]
34
+ root 50 0.0 0.0 0 0 ? S< 5月29 0:00 [writeback]
35
+ root 51 0.0 0.0 0 0 ? SN 5月29 0:00 [ksmd]
36
+ root 52 0.0 0.0 0 0 ? SN 5月29 0:01 [khugepaged]
37
+ root 53 0.0 0.0 0 0 ? S< 5月29 0:00 [crypto]
38
+ root 54 0.0 0.0 0 0 ? S< 5月29 0:00 [kintegrityd]
39
+ root 55 0.0 0.0 0 0 ? S< 5月29 0:00 [bioset]
40
+ root 56 0.0 0.0 0 0 ? S< 5月29 0:00 [kblockd]
41
+ root 57 0.0 0.0 0 0 ? S< 5月29 0:00 [ata_sff]
42
+ root 58 0.0 0.0 0 0 ? S< 5月29 0:00 [md]
43
+ root 59 0.0 0.0 0 0 ? S< 5月29 0:00 [devfreq_wq]
44
+ root 63 0.1 0.0 0 0 ? S 5月29 1:28 [kswapd0]
45
+ root 64 0.0 0.0 0 0 ? S< 5月29 0:00 [vmstat]
46
+ root 65 0.0 0.0 0 0 ? S 5月29 0:00 [fsnotify_mark]
47
+ root 66 0.0 0.0 0 0 ? S 5月29 0:00 [ecryptfs-kthrea]
48
+ root 82 0.0 0.0 0 0 ? S< 5月29 0:00 [kthrotld]
49
+ root 83 0.0 0.0 0 0 ? S< 5月29 0:00 [acpi_thermal_pm]
50
+ root 84 0.0 0.0 0 0 ? S< 5月29 0:00 [bioset]
51
+ root 85 0.0 0.0 0 0 ? S< 5月29 0:00 [bioset]
52
+ root 86 0.0 0.0 0 0 ? S< 5月29 0:00 [bioset]
53
+ root 87 0.0 0.0 0 0 ? S< 5月29 0:00 [bioset]
54
+ root 88 0.0 0.0 0 0 ? S< 5月29 0:00 [bioset]
55
+ root 89 0.0 0.0 0 0 ? S< 5月29 0:00 [bioset]
56
+ root 90 0.0 0.0 0 0 ? S< 5月29 0:00 [bioset]
57
+ root 91 0.0 0.0 0 0 ? S< 5月29 0:00 [bioset]
58
+ root 96 0.0 0.0 0 0 ? S< 5月29 0:00 [ipv6_addrconf]
59
+ root 110 0.0 0.0 0 0 ? S< 5月29 0:00 [deferwq]
60
+ root 111 0.0 0.0 0 0 ? S< 5月29 0:00 [charger_manager]
61
+ root 161 0.0 0.0 0 0 ? S< 5月29 0:00 [kpsmoused]
62
+ root 163 0.0 0.0 0 0 ? S 5月29 0:00 [kworker/5:1]
63
+ root 164 0.0 0.0 0 0 ? S 5月29 0:00 [scsi_eh_0]
64
+ root 165 0.0 0.0 0 0 ? S< 5月29 0:00 [scsi_tmf_0]
65
+ root 166 0.0 0.0 0 0 ? S 5月29 0:00 [scsi_eh_1]
66
+ root 167 0.0 0.0 0 0 ? S< 5月29 0:00 [scsi_tmf_1]
67
+ root 168 0.0 0.0 0 0 ? S 5月29 0:00 [scsi_eh_2]
68
+ root 169 0.0 0.0 0 0 ? S< 5月29 0:00 [scsi_tmf_2]
69
+ root 170 0.0 0.0 0 0 ? S 5月29 0:00 [scsi_eh_3]
70
+ root 171 0.0 0.0 0 0 ? S< 5月29 0:00 [scsi_tmf_3]
71
+ root 172 0.0 0.0 0 0 ? S 5月29 0:00 [scsi_eh_4]
72
+ root 173 0.0 0.0 0 0 ? S< 5月29 0:00 [scsi_tmf_4]
73
+ root 174 0.0 0.0 0 0 ? S 5月29 0:00 [scsi_eh_5]
74
+ root 175 0.0 0.0 0 0 ? S< 5月29 0:00 [scsi_tmf_5]
75
+ root 185 0.0 0.0 0 0 ? S< 5月29 0:00 [bioset]
76
+ root 186 0.0 0.0 0 0 ? S< 5月29 0:00 [bioset]
77
+ root 187 0.0 0.0 0 0 ? S< 5月29 0:00 [bioset]
78
+ root 188 0.0 0.0 0 0 ? S< 5月29 0:00 [bioset]
79
+ root 193 0.0 0.0 0 0 ? S 5月29 0:00 [scsi_eh_6]
80
+ root 194 0.0 0.0 0 0 ? S< 5月29 0:00 [scsi_tmf_6]
81
+ root 195 0.0 0.0 0 0 ? S 5月29 0:00 [usb-storage]
82
+ root 224 0.0 0.0 0 0 ? S 5月29 0:01 [jbd2/sda2-8]
83
+ root 225 0.0 0.0 0 0 ? S< 5月29 0:00 [ext4-rsv-conver]
84
+ root 238 0.0 0.0 0 0 ? S< 5月29 0:00 [bioset]
85
+ root 262 0.0 0.0 0 0 ? S 5月29 0:00 [kauditd]
86
+ root 266 0.0 0.1 51760 19300 ? Ss 5月29 0:13 /lib/systemd/systemd-journald
87
+ root 300 0.0 0.0 0 0 ? S< 5月29 0:00 [rpciod]
88
+ root 306 0.0 0.0 46780 5864 ? Ss 5月29 0:00 /lib/systemd/systemd-udevd
89
+ root 418 0.0 0.0 0 0 ? S 5月29 0:00 [irq/37-mei_me]
90
+ root 516 0.0 0.0 0 0 ? S< 5月29 0:00 [kvm-irqfd-clean]
91
+ root 670 0.0 0.0 0 0 ? S 5月29 0:01 [jbd2/sdc-8]
92
+ root 671 0.0 0.0 0 0 ? S< 5月29 0:00 [ext4-rsv-conver]
93
+ root 676 0.0 0.0 0 0 ? S 5月29 0:00 [jbd2/sdb-8]
94
+ root 678 0.0 0.0 0 0 ? S< 5月29 0:00 [ext4-rsv-conver]
95
+ root 679 0.0 0.0 0 0 ? S 5月29 0:00 [jbd2/sdd-8]
96
+ root 681 0.0 0.0 0 0 ? S< 5月29 0:00 [ext4-rsv-conver]
97
+ systemd+ 778 0.0 0.0 102384 2564 ? Ssl 5月29 0:00 /lib/systemd/systemd-timesyncd
98
+ whoopsie 940 0.0 0.0 373980 12136 ? Ssl 5月29 0:00 /usr/bin/whoopsie -f
99
+ message+ 941 0.0 0.0 43600 4628 ? Ss 5月29 0:00 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation
100
+ root 1051 0.0 0.0 168020 8536 ? Ssl 5月29 0:05 /usr/sbin/thermald --no-daemon --dbus-enable
101
+ root 1055 0.0 0.0 277876 8600 ? Ssl 5月29 0:04 /usr/lib/accountsservice/accounts-daemon
102
+ syslog 1059 0.0 0.0 262692 3784 ? Ssl 5月29 0:05 /usr/sbin/rsyslogd -n
103
+ root 1067 0.0 0.1 470160 24652 ? Ssl 5月29 0:03 /usr/lib/snapd/snapd
104
+ root 1072 0.0 0.1 450880 17516 ? Ssl 5月29 0:00 /usr/sbin/NetworkManager --no-daemon
105
+ root 1080 0.0 0.0 30592 2940 ? Ss 5月29 0:00 /usr/sbin/cron -f
106
+ root 1084 0.0 0.0 28640 3080 ? Ss 5月29 0:00 /lib/systemd/systemd-logind
107
+ avahi 1085 0.0 0.0 44912 3484 ? Ss 5月29 0:00 avahi-daemon: running [Re.local]
108
+ daemon 1087 0.0 0.0 26044 2224 ? Ss 5月29 0:00 /usr/sbin/atd -f
109
+ root 1090 0.0 0.0 337512 8452 ? Ssl 5月29 0:00 /usr/sbin/ModemManager
110
+ root 1093 0.0 0.0 4400 1292 ? Ss 5月29 0:00 /usr/sbin/acpid
111
+ avahi 1103 0.0 0.0 44788 344 ? S 5月29 0:00 avahi-daemon: chroot helper
112
+ root 1233 0.0 0.0 278688 9908 ? Ssl 5月29 0:00 /usr/lib/policykit-1/polkitd --no-debug
113
+ root 1341 0.0 0.0 65520 6144 ? Ss 5月29 0:02 /usr/sbin/sshd -D
114
+ root 1391 0.0 0.0 0 0 ? S< 5月29 0:00 [nfsiod]
115
+ root 1406 0.0 0.0 0 0 ? S 5月29 0:00 [nfsv4.0-svc]
116
+ root 1557 0.0 0.0 19568 2236 ? Ss 5月29 0:03 /usr/sbin/irqbalance --pid=/var/run/irqbalance.pid
117
+ root 1559 0.0 0.0 350408 6292 ? SLsl 5月29 0:00 /usr/sbin/lightdm
118
+ dictd 1562 0.0 0.0 20084 2484 ? Ss 5月29 0:00 dictd 1.12.1: 0/0
119
+ root 1598 0.0 0.3 423024 59348 tty7 Ssl+ 5月29 0:42 /usr/lib/xorg/Xorg -core :0 -seat seat0 -auth /var/run/lightdm/root/:0 -nolisten tcp vt7 -novtswitch
120
+ root 1601 0.0 0.0 17524 1724 tty1 Ss+ 5月29 0:00 /sbin/agetty --noclear tty1 linux
121
+ root 1697 0.0 0.0 65408 4468 ? Ss 5月29 0:00 /usr/lib/postfix/sbin/master
122
+ postfix 1699 0.0 0.0 67640 4480 ? S 5月29 0:00 qmgr -l -t unix -u
123
+ root 1772 0.0 0.0 241588 5868 ? Ss 5月29 0:01 /usr/sbin/nmbd -D
124
+ root 1792 0.0 0.0 340020 15864 ? Ss 5月29 0:00 /usr/sbin/smbd -D
125
+ root 1796 0.0 0.0 331392 5700 ? S 5月29 0:00 /usr/sbin/smbd -D
126
+ root 1798 0.0 0.0 340020 7308 ? S 5月29 0:00 /usr/sbin/smbd -D
127
+ root 1800 0.0 0.0 230304 6524 ? Sl 5月29 0:00 lightdm --session-child 12 19
128
+ rtkit 1866 0.0 0.0 183544 2964 ? SNsl 5月29 0:00 /usr/lib/rtkit/rtkit-daemon
129
+ root 1870 0.0 0.0 348880 9692 ? Ssl 5月29 0:00 /usr/lib/upower/upowerd
130
+ colord 1901 0.0 0.0 303052 11100 ? Ssl 5月29 0:00 /usr/lib/colord/colord
131
+ alice 1934 0.0 0.0 45248 4556 ? Ss 5月29 0:00 /lib/systemd/systemd --user
132
+ alice 1935 0.0 0.0 145468 2224 ? S 5月29 0:00 (sd-pam)
133
+ alice 1943 0.0 0.0 126560 12716 ? Ss 5月29 0:01 i3
134
+ alice 2018 0.0 0.0 11140 320 ? Ss 5月29 0:00 /usr/bin/ssh-agent /usr/bin/dbus-launch --exit-with-session /usr/bin/im-launch i3
135
+ alice 2021 0.0 0.0 43600 376 ? S 5月29 0:00 /usr/bin/dbus-launch --exit-with-session /usr/bin/im-launch i3
136
+ alice 2022 0.0 0.0 42884 3292 ? Ss 5月29 0:00 /usr/bin/dbus-daemon --fork --print-pid 5 --print-address 7 --session
137
+ alice 2031 0.0 0.1 92596 19164 ? S 5月29 0:13 /usr/bin/uim-xim
138
+ alice 2032 0.0 0.1 394272 30328 ? Sl 5月29 0:03 uim-toolbar
139
+ alice 2034 0.0 0.0 12816 1704 ? S 5月29 0:00 /usr/lib/x86_64-linux-gnu/uim/uim-helper-server
140
+ alice 2036 0.0 0.0 4508 784 ? S 5月29 0:00 /bin/sh -c uim-toolbar-gtk3
141
+ alice 2038 0.0 0.0 4508 744 ? S 5月29 0:00 /bin/sh -c i3bar --bar_id=bar-0 --socket="/run/user/1000/i3/ipc-socket.1943"
142
+ alice 2039 0.0 0.1 394220 30296 ? Sl 5月29 0:02 uim-toolbar-gtk3
143
+ alice 2040 0.0 0.0 86160 10128 ? S 5月29 0:20 i3bar --bar_id=bar-0 --socket=/run/user/1000/i3/ipc-socket.1943
144
+ alice 2041 0.0 0.0 4508 852 ? S 5月29 0:00 /bin/sh -c i3status
145
+ alice 2042 0.0 0.0 80664 4924 ? S 5月29 0:21 i3status
146
+ alice 2044 0.0 0.0 337996 5552 ? Sl 5月29 0:00 /usr/lib/at-spi2-core/at-spi-bus-launcher
147
+ alice 2049 0.0 0.0 42768 3356 ? S 5月29 0:00 /usr/bin/dbus-daemon --config-file=/etc/at-spi2/accessibility.conf --nofork --print-address 3
148
+ alice 2051 0.0 0.0 206864 7448 ? Sl 5月29 0:00 /usr/lib/at-spi2-core/at-spi2-registryd --use-gnome-session
149
+ alice 2057 0.0 0.0 276168 8160 ? Sl 5月29 0:00 /usr/lib/gvfs/gvfsd
150
+ alice 2062 0.0 0.0 341324 5332 ? Sl 5月29 0:00 /usr/lib/gvfs/gvfsd-fuse /run/user/1000/gvfs -f -o big_writes
151
+ alice 2073 0.0 0.0 4508 844 ? S 5月29 0:00 /bin/sh -c urxvt
152
+ alice 2074 0.0 0.0 97128 13080 ? S 5月29 0:01 urxvt
153
+ alice 2075 0.0 0.0 83784 4172 ? S 5月29 0:00 urxvt
154
+ alice 2077 0.0 0.1 389652 23360 ? Sl 5月29 0:01 /usr/lib/x86_64-linux-gnu/uim/uim-candwin-gtk
155
+ alice 2078 0.0 0.0 53948 11632 pts/0 Ss+ 5月29 0:00 zsh
156
+ alice 2135 0.0 0.0 4508 844 ? S 5月29 0:00 /bin/sh -c urxvt
157
+ alice 2136 0.0 0.1 105260 16500 ? S 5月29 0:00 urxvt
158
+ alice 2137 0.0 0.0 83784 4124 ? S 5月29 0:00 urxvt
159
+ alice 2140 0.0 0.0 54088 11856 pts/1 Ss+ 5月29 0:01 zsh
160
+ alice 2198 0.0 0.0 63204 5380 ? S 5月29 0:00 /usr/lib/x86_64-linux-gnu/gconf/gconfd-2
161
+ root 2472 0.0 0.1 352260 18316 ? S 5月29 0:01 /usr/sbin/smbd -D
162
+ alice 2639 0.1 0.0 133748 6008 ? Ssl 5月29 1:36 synergyc 192.168.0.85
163
+ root 4797 0.0 0.0 97496 6888 ? Ss 5月29 0:00 sshd: alice [priv]
164
+ alice 4903 0.0 0.0 97496 4532 ? S 5月29 0:00 sshd: alice@pts/2
165
+ alice 4904 0.0 0.0 49044 10584 pts/2 Ss+ 5月29 0:00 -zsh
166
+ alice 6696 0.0 0.3 575036 49792 pts/1 SNl 5月29 0:00 emacs -f lookup
167
+ alice 6700 0.0 0.0 19912 1976 pts/7 SNs+ 5月29 0:00 /usr/bin/eblook -q -e euc-jp /home/alice/dict/OALD_7
168
+ alice 6701 0.0 0.0 19912 1924 pts/8 SNs+ 5月29 0:00 /usr/bin/eblook -q -e euc-jp /home/alice/dict/READERS
169
+ alice 6702 0.0 0.0 19916 1928 pts/9 SNs+ 5月29 0:00 /usr/bin/eblook -q -e euc-jp /home/alice/dict/RPLUS
170
+ alice 6703 0.0 0.0 19912 1896 pts/10 SNs+ 5月29 0:00 /usr/bin/eblook -q -e euc-jp /home/alice/dict/kenkyusha/colloc
171
+ alice 6704 0.0 0.0 19912 1924 pts/11 SNs+ 5月29 0:00 /usr/bin/eblook -q -e euc-jp /home/alice/dict/LSD
172
+ alice 6705 0.0 0.0 19912 1996 pts/12 SNs+ 5月29 0:00 /usr/bin/eblook -q -e euc-jp /home/alice/dict/SSD_JP10
173
+ alice 6706 0.0 0.0 20456 2932 pts/13 SNs+ 5月29 0:00 /usr/bin/eblook -q -e euc-jp /home/alice/dict/Kojien03
174
+ alice 6707 0.0 0.0 19912 2008 pts/14 SNs+ 5月29 0:00 /usr/bin/eblook -q -e euc-jp /home/alice/dict/KANJIGEN
175
+ alice 6708 0.0 0.0 19912 2004 pts/15 SNs+ 5月29 0:00 /usr/bin/eblook -q -e euc-jp /home/alice/dict/wikipedia20120408
176
+ root 13454 0.0 0.0 0 0 ? S 03:28 0:00 [kworker/4:2]
177
+ postfix 13890 0.0 0.0 67476 4424 ? S 11:52 0:00 pickup -l -t unix -u -c
178
+ root 14946 0.0 0.0 0 0 ? S< 06:30 0:04 [kworker/5:1H]
179
+ root 15295 0.0 0.0 0 0 ? S< 07:11 0:01 [kworker/3:2H]
180
+ root 15421 0.0 0.0 0 0 ? S< 07:28 0:01 [kworker/3:0H]
181
+ root 15542 0.0 0.0 0 0 ? S 11:54 0:00 [kworker/u16:0]
182
+ root 15647 0.0 0.0 0 0 ? S 07:35 0:12 [kworker/2:2]
183
+ root 15651 0.0 0.0 274816 8972 ? Ssl 07:35 0:00 /usr/sbin/cups-browsed
184
+ root 15653 0.0 0.0 0 0 ? S 07:35 0:00 [kworker/5:2]
185
+ root 15744 0.0 0.0 0 0 ? S 07:35 0:00 [kworker/7:2]
186
+ root 15870 0.0 0.0 0 0 ? S 07:43 0:00 [kworker/6:1]
187
+ root 16061 0.0 0.0 0 0 ? S< 08:04 0:00 [kworker/0:0H]
188
+ root 16364 0.0 0.0 0 0 ? S< 11:55 0:00 [kworker/4:1H]
189
+ root 16567 0.0 0.0 0 0 ? S 08:44 0:00 [kworker/4:3]
190
+ root 16706 0.0 0.0 0 0 ? S 08:50 0:00 [kworker/7:1]
191
+ root 16879 0.0 0.0 0 0 ? S< 09:06 0:00 [kworker/4:0H]
192
+ root 16885 0.0 0.0 0 0 ? S 09:07 0:00 [kworker/1:2]
193
+ root 17413 0.0 0.0 0 0 ? S< 10:03 0:00 [kworker/6:0H]
194
+ alice 17449 0.0 0.0 4508 748 ? S 10:08 0:00 /bin/sh -c urxvt
195
+ alice 17450 0.0 0.0 97040 12536 ? S 10:08 0:00 urxvt
196
+ alice 17451 0.0 0.0 83784 4068 ? S 10:08 0:00 urxvt
197
+ alice 17452 0.0 0.0 53648 11108 pts/3 Ss+ 10:08 0:00 zsh
198
+ root 17508 0.0 0.0 0 0 ? S 10:10 0:00 [kworker/6:0]
199
+ root 17552 0.0 0.0 0 0 ? S< 10:15 0:01 [kworker/5:2H]
200
+ root 17576 0.0 0.0 0 0 ? S< 10:18 0:00 [kworker/1:1H]
201
+ root 17681 0.0 0.0 0 0 ? S 11:56 0:00 [kworker/3:1]
202
+ root 17883 0.0 0.0 0 0 ? S 10:51 0:00 [kworker/0:0]
203
+ root 17949 0.2 0.0 0 0 ? S< 11:00 0:10 [kworker/2:2H]
204
+ root 17980 0.0 0.0 0 0 ? S 11:04 0:01 [kworker/2:1]
205
+ root 18011 0.0 0.0 0 0 ? S< 11:08 0:00 [kworker/7:2H]
206
+ root 18087 0.0 0.0 0 0 ? S< 11:17 0:00 [kworker/7:1H]
207
+ root 18130 0.0 0.0 0 0 ? S< 11:23 0:00 [kworker/6:1H]
208
+ root 18155 0.0 0.0 0 0 ? S< 11:25 0:01 [kworker/2:0H]
209
+ root 18156 0.0 0.0 0 0 ? S< 11:25 0:00 [kworker/0:1H]
210
+ root 18188 0.0 0.0 0 0 ? S 11:30 0:00 [kworker/3:2]
211
+ root 18238 0.0 0.0 0 0 ? S 11:38 0:00 [kworker/u16:2]
212
+ alice 18244 0.0 0.0 4508 792 ? S 11:38 0:00 /bin/sh -c urxvt
213
+ alice 18245 0.0 0.0 97076 12828 ? S 11:38 0:00 urxvt
214
+ alice 18246 0.0 0.0 83784 4252 ? S 11:38 0:00 urxvt
215
+ alice 18247 0.0 0.0 53508 11112 pts/4 Ss+ 11:38 0:00 zsh
216
+ alice 18286 0.0 0.0 97728 12664 pts/4 SN 11:39 0:00 urxvt
217
+ alice 18287 0.0 0.0 83788 4072 pts/4 SN 11:39 0:00 urxvt
218
+ alice 18288 0.0 0.0 53592 11240 pts/5 SNs 11:39 0:00 zsh
219
+ alice 18352 0.0 0.1 177636 17232 pts/5 SN+ 11:41 0:00 vim bin/columnanalyze lib/tefil/columnanalyzer.rb test/test_columnanalyzer.rb +vs
220
+ root 18363 0.0 0.0 0 0 ? S< 11:58 0:00 [kworker/1:0H]
221
+ alice 18367 0.0 0.0 4508 844 ? S 11:41 0:00 /bin/sh -c urxvt
222
+ alice 18368 0.0 0.0 97124 12884 ? S 11:41 0:00 urxvt
223
+ alice 18369 0.0 0.0 83784 4088 ? S 11:41 0:00 urxvt
224
+ alice 18370 0.0 0.0 53644 11288 pts/6 Ss 11:41 0:00 zsh
225
+ alice 18373 0.0 0.0 4508 756 ? S 11:58 0:00 /bin/sh -c urxvt
226
+ alice 18374 0.0 0.0 98008 13944 ? S 11:58 0:00 urxvt
227
+ alice 18375 0.0 0.0 83784 4112 ? S 11:58 0:00 urxvt
228
+ alice 18376 0.0 0.0 49060 10588 pts/17 Ss+ 11:58 0:00 zsh
229
+ root 18427 0.0 0.0 0 0 ? S 11:43 0:00 [kworker/0:2]
230
+ alice 18479 0.4 0.1 177988 17692 pts/6 S+ 11:43 0:09 vim index.md
231
+ root 18480 0.0 0.0 0 0 ? S 12:09 0:00 [kworker/1:1]
232
+ alice 18485 0.0 0.0 4508 844 ? S 11:44 0:00 /bin/sh -c urxvt
233
+ alice 18486 0.0 0.0 97124 12988 ? S 11:44 0:00 urxvt
234
+ alice 18487 0.0 0.0 83784 4064 ? S 11:44 0:00 urxvt
235
+ alice 18488 0.0 0.0 53640 11200 pts/16 Ss 11:44 0:00 zsh
236
+ alice 18489 0.0 0.0 4508 804 ? S 12:09 0:00 /bin/sh -c urxvt
237
+ alice 18490 0.0 0.0 97036 12636 ? S 12:09 0:00 urxvt
238
+ alice 18491 0.0 0.0 83784 4060 ? S 12:09 0:00 urxvt
239
+ alice 18492 0.0 0.0 53628 11172 pts/18 Ss 12:09 0:00 zsh
240
+ alice 18528 0.3 0.1 177520 16916 pts/16 S+ 12:09 0:01 vim bin/calc lib/tefil/calculator.rb
241
+ alice 18583 0.0 0.0 4508 840 ? S 12:11 0:00 /bin/sh -c urxvt
242
+ alice 18584 0.0 0.0 97036 12772 ? S 12:11 0:00 urxvt
243
+ alice 18585 0.0 0.0 83784 3988 ? S 12:11 0:00 urxvt
244
+ alice 18586 0.0 0.0 53620 11268 pts/19 Ss 12:11 0:00 zsh
245
+ alice 18869 0.0 0.0 20092 3228 pts/19 S+ 12:13 0:00 man bc
246
+ alice 18880 0.0 0.0 11276 2560 pts/19 S+ 12:13 0:00 less
247
+ root 18958 0.0 0.0 0 0 ? S 12:17 0:00 [kworker/u16:1]
248
+ root 18962 0.1 0.0 96124 6664 ? Ss 12:18 0:00 sshd: root [priv]
249
+ sshd 18963 0.0 0.0 66864 3240 ? S 12:18 0:00 sshd: root [net]
250
+ alice 18964 0.0 0.0 38952 3252 pts/18 R+ 12:18 0:00 ps auxw
@@ -0,0 +1,79 @@
1
+ job-ID prior name user state submit/start at queue slots ja-task-ID
2
+ -----------------------------------------------------------------------------------------------------------------
3
+ 205712 0.75000 vasp-all.q alice r 05/11/2017 15:37:12 Tc.q@Tc18.calc.atom 4
4
+ 205714 0.75000 vasp-all.q alice r 05/11/2017 15:37:12 Tc.q@Tc19.calc.atom 4
5
+ 269156 0.40572 vasp-Tc.qs bob r 05/30/2017 02:43:57 Tc.q@Tc05.calc.atom 4
6
+ 269159 0.40572 vasp-Tc.qs bob r 05/30/2017 03:47:12 Tc.q@Tc02.calc.atom 4
7
+ 269161 0.40572 vasp-Tc.qs bob r 05/30/2017 10:01:27 Tc.q@Tc06.calc.atom 4
8
+ 269162 0.40572 vasp-Tc.qs bob r 05/30/2017 10:52:12 Tc.q@Tc07.calc.atom 4
9
+ 288849 0.27477 vasp-PdTci alice r 05/30/2017 11:55:27 Ge.q@Ge07.calc.atom 4
10
+ 288850 0.27477 vasp-PdTci alice r 05/30/2017 11:55:27 Ge.q@Ge05.calc.atom 4
11
+ 288874 0.27477 vasp-PdTci alice r 05/30/2017 11:58:42 Ge.q@Ge10.calc.atom 4
12
+ 288875 0.27477 vasp-PdTci alice r 05/30/2017 11:59:12 Sr.q@Sr17.calc.atom 4
13
+ 288952 0.27477 vasp-PdTci alice r 05/30/2017 12:17:12 Ru.q@Ru03.calc.atom 4
14
+ 288953 0.27477 vasp-PdTci alice r 05/30/2017 12:17:27 Ag.q@Ag03.calc.atom 4
15
+ 288954 0.27477 vasp-PdTci alice r 05/30/2017 12:17:27 In.q@In09.calc.atom 4
16
+ 288955 0.27477 vasp-PdTci alice r 05/30/2017 12:17:57 Ge.q@Ge09.calc.atom 4
17
+ 288956 0.27477 vasp-PdTci alice r 05/30/2017 12:18:12 Ru.q@Ru01.calc.atom 4
18
+ 293923 0.25243 vasp-Pd.qs bob r 05/30/2017 09:45:27 Pd.q@Pd12.calc.atom 4
19
+ 293935 0.25081 vasp-Pd.qs bob r 05/30/2017 11:18:42 Pd.q@Pd06.calc.atom 4
20
+ 293936 0.25076 vasp-Pd.qs bob r 05/30/2017 11:25:57 Pd.q@Pd09.calc.atom 4
21
+ 293937 0.25068 vasp-Pd.qs bob r 05/30/2017 11:26:57 Pd.q@Pd07.calc.atom 4
22
+ 293938 0.25067 vasp-Pd.qs bob r 05/30/2017 11:32:12 Pd.q@Pd05.calc.atom 4
23
+ 293939 0.25066 vasp-Pd.qs bob r 05/30/2017 11:33:27 Pd.q@Pd11.calc.atom 4
24
+ 293940 0.25064 vasp-Pd.qs bob r 05/30/2017 11:36:42 Pd.q@Pd13.calc.atom 4
25
+ 293941 0.25064 vasp-Pd.qs bob r 05/30/2017 11:37:57 Pd.q@Pd15.calc.atom 4
26
+ 205988 0.66668 qsub.sh charlie Eqw 05/12/2017 15:33:10 4
27
+ 205994 0.66668 qsub.sh charlie Eqw 05/12/2017 15:33:14 4
28
+ 269299 0.38432 vasp-Tc.qs bob qw 05/25/2017 10:26:16 4
29
+ 269300 0.38430 vasp-Tc.qs bob qw 05/25/2017 10:27:25 4
30
+ 269301 0.38428 vasp-Tc.qs bob qw 05/25/2017 10:28:36 4
31
+ 269302 0.38426 vasp-Tc.qs bob qw 05/25/2017 10:29:17 4
32
+ 269314 0.38410 vasp-Tc.qs bob qw 05/25/2017 10:38:05 4
33
+ 269320 0.38354 vasp-Tc.qs bob qw 05/25/2017 11:08:47 4
34
+ 269321 0.38352 vasp-Tc.qs bob qw 05/25/2017 11:09:36 4
35
+ 288969 0.27477 vasp-PdTci alice qw 05/29/2017 13:32:42 4
36
+ 289174 0.27475 vasp-PdTci alice qw 05/29/2017 13:33:25 4
37
+ 289175 0.27475 vasp-PdTci alice qw 05/29/2017 13:33:25 4
38
+ 290791 0.27467 qsub.sh charlie qw 05/29/2017 13:38:15 4
39
+ 290792 0.27467 vasp-PdTci alice qw 05/29/2017 13:38:16 4
40
+ 290813 0.27466 vasp-PdTci alice qw 05/29/2017 13:38:18 4
41
+ 290814 0.27466 qsub.sh charlie qw 05/29/2017 13:38:18 4
42
+ 290815 0.27466 vasp-PdTci alice qw 05/29/2017 13:38:18 4
43
+ 290816 0.27466 vasp-PdTci alice qw 05/29/2017 13:38:18 4
44
+ 290919 0.27466 qsub.sh charlie qw 05/29/2017 13:38:31 4
45
+ 290920 0.27466 vasp-PdTci alice qw 05/29/2017 13:38:31 4
46
+ 290921 0.27466 vasp-PdTci alice qw 05/29/2017 13:38:31 4
47
+ 290922 0.27466 qsub.sh charlie qw 05/29/2017 13:38:32 4
48
+ 290923 0.27466 vasp-PdTci alice qw 05/29/2017 13:38:32 4
49
+ 290924 0.27466 vasp-PdTci alice qw 05/29/2017 13:38:32 4
50
+ 290925 0.27466 vasp-PdTci alice qw 05/29/2017 13:38:32 4
51
+ 290926 0.27466 qsub.sh charlie qw 05/29/2017 13:38:32 4
52
+ 290927 0.27466 vasp-PdTci alice qw 05/29/2017 13:38:32 4
53
+ 290928 0.27466 vasp-PdTci alice qw 05/29/2017 13:38:32 4
54
+ 290929 0.27466 vasp-PdTci alice qw 05/29/2017 13:38:32 4
55
+ 291337 0.27464 vasp-PdTci alice qw 05/29/2017 13:39:38 4
56
+ 291338 0.27464 qsub.sh charlie qw 05/29/2017 13:39:38 4
57
+ 291339 0.27464 vasp-PdTci alice qw 05/29/2017 13:39:38 4
58
+ 291340 0.27464 vasp-PdTci alice qw 05/29/2017 13:39:39 4
59
+ 291341 0.27464 vasp-PdTci alice qw 05/29/2017 13:39:39 4
60
+ 291342 0.27464 qsub.sh charlie qw 05/29/2017 13:39:39 4
61
+ 291344 0.27464 vasp-PdTci alice qw 05/29/2017 13:39:39 4
62
+ 291345 0.27464 qsub.sh charlie qw 05/29/2017 13:39:39 4
63
+ 291346 0.27464 vasp-PdTci alice qw 05/29/2017 13:39:39 4
64
+ 292639 0.27458 vasp-PdTci alice qw 05/29/2017 13:43:10 4
65
+ 292640 0.27458 vasp-PdTci alice qw 05/29/2017 13:43:10 4
66
+ 292644 0.27458 vasp-PdTci alice qw 05/29/2017 13:43:10 4
67
+ 292645 0.27458 vasp-PdTci alice qw 05/29/2017 13:43:10 4
68
+ 292646 0.27458 vasp-PdTci alice qw 05/29/2017 13:43:10 4
69
+ 293942 0.25063 vasp-Pd.qs bob qw 05/30/2017 11:22:57 4
70
+ 293943 0.25060 vasp-Pd.qs bob qw 05/30/2017 11:24:33 4
71
+ 293944 0.25059 vasp-Pd.qs bob qw 05/30/2017 11:24:55 4
72
+ 293945 0.25012 vaspgeomop dave qw 05/30/2017 11:50:24 4
73
+ 293946 0.25011 vaspgeomop dave qw 05/30/2017 11:51:01 4
74
+ 293947 0.25011 vaspgeomop dave qw 05/30/2017 11:51:02 4
75
+ 293948 0.25011 vaspgeomop dave qw 05/30/2017 11:51:03 4
76
+ 293949 0.25011 vaspgeomop dave qw 05/30/2017 11:51:04 4
77
+ 293950 0.25011 vaspgeomop dave qw 05/30/2017 11:51:04 4
78
+ 293951 0.25011 vaspgeomop dave qw 05/30/2017 11:51:05 4
79
+ 293952 0.25011 vaspgeomop dave qw 05/30/2017 11:51:05 4