Difference between revisions of "完美日用小工具"

From 清冽之泉
Jump to navigation Jump to search
Line 1: Line 1:
  +
* zip 文件解压后文件名乱码
 
 
<syntaxhighlight lang="bash" line>
 
<syntaxhighlight lang="bash" line>
 
# zip 文件解压后文件名乱码
 
unar -e GBK
 
unar -e GBK
 
</syntaxhighlight>
 
</syntaxhighlight>
Line 20: Line 21:
 
<syntaxhighlight lang="bash" line>
 
<syntaxhighlight lang="bash" line>
 
scp sth.zip host:~
 
scp sth.zip host:~
  +
</syntaxhighlight>
  +
  +
* 给本目录下所有文件夹名字后加加一个g字符
  +
<syntaxhighlight lang="bash" line>
  +
#!/bin/bash
  +
for dir in */;
  +
do
  +
if [ -d "$dir" ]; then
  +
new_dir="${dir%*/}g"
  +
mv "$dir" "$new_dir"
  +
fi
  +
done
 
</syntaxhighlight>
 
</syntaxhighlight>

Revision as of 20:54, 8 May 2024

1# zip 文件解压后文件名乱码
2unar -e GBK
  • 显示所有进程,且只显示第12列
1ps aux | awk '{print $11}'
  • 让 apache2 中的 php 代码活起来
1Include etc/apache2/conf.d/*.conf
2# Add module for PHP 8
3LoadModule php_module libexec/apache2/libphp.so
4AddHandler php-script .php
  • 复制东西进另一个地方
1scp sth.zip host:~
  • 给本目录下所有文件夹名字后加加一个g字符
1#!/bin/bash
2for dir in */;
3do
4    if [ -d "$dir" ]; then
5        new_dir="${dir%*/}g"
6        mv "$dir" "$new_dir"
7    fi
8done