ps_f 0.1.0 → 0.1.1
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.
- data/bin/ps_f +0 -4
- metadata +3 -3
data/bin/ps_f
CHANGED
|
@@ -91,10 +91,6 @@ if $stdout.tty?
|
|
|
91
91
|
max_cols = `stty size cols 2> /dev/null`.strip.sub(/\A.*\s+/, '').first.to_i
|
|
92
92
|
end
|
|
93
93
|
|
|
94
|
-
if ARGV.any? {|i| /\A[a-z]+\Z/ =~ i and /w/ =~ i}
|
|
95
|
-
max_cols = 0
|
|
96
|
-
end
|
|
97
|
-
|
|
98
94
|
tree_lines.each do |line|
|
|
99
95
|
line = line[0, max_cols] unless max_cols.zero?
|
|
100
96
|
puts line
|
metadata
CHANGED